@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum AdministrativeActionType extends Enum<AdministrativeActionType>
Describes the type of administrative action, as follows:
FILE_SYSTEM_UPDATE - A file system update administrative action initiated by the user from the Amazon
FSx console, API (UpdateFileSystem), or CLI (update-file-system). A
STORAGE_OPTIMIZATION - Once the FILE_SYSTEM_UPDATE task to increase a file system's storage
capacity completes successfully, a STORAGE_OPTIMIZATION task starts. Storage optimization is the process
of migrating the file system data to the new, larger disks. You can track the storage migration progress using the
ProgressPercent property. When STORAGE_OPTIMIZATION completes successfully, the parent
FILE_SYSTEM_UPDATE action status changes to COMPLETED. For more information, see Managing Storage
Capacity.
| Enum Constant and Description |
|---|
FILE_SYSTEM_UPDATE |
STORAGE_OPTIMIZATION |
| Modifier and Type | Method and Description |
|---|---|
static AdministrativeActionType |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static AdministrativeActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdministrativeActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdministrativeActionType FILE_SYSTEM_UPDATE
public static final AdministrativeActionType STORAGE_OPTIMIZATION
public static AdministrativeActionType[] values()
for (AdministrativeActionType c : AdministrativeActionType.values()) System.out.println(c);
public static AdministrativeActionType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<AdministrativeActionType>public static AdministrativeActionType fromValue(String value)
value - real valueIllegalArgumentException - If the specified value does not map to one of the known values in this enum.Copyright © 2020. All rights reserved.