@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).
STORAGE_OPTIMIZATION - Once the FILE_SYSTEM_UPDATE task to increase a file system's storage
capacity completes successfully, a STORAGE_OPTIMIZATION task starts.
For Windows, storage optimization is the process of migrating the file system data to the new, larger disks.
For Lustre, storage optimization consists of rebalancing the data across the existing and newly added file servers.
You can track the storage optimization 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 in the Amazon FSx for Windows File Server User Guide and Managing storage and
throughput capacity in the Amazon FSx for Lustre User Guide.
FILE_SYSTEM_ALIAS_ASSOCIATION - A file system update to associate a new DNS alias with the file system.
For more information, see .
FILE_SYSTEM_ALIAS_DISASSOCIATION - A file system update to disassociate a DNS alias from the file
system. For more information, see .
| Enum Constant and Description |
|---|
FILE_SYSTEM_ALIAS_ASSOCIATION |
FILE_SYSTEM_ALIAS_DISASSOCIATION |
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 final AdministrativeActionType FILE_SYSTEM_ALIAS_ASSOCIATION
public static final AdministrativeActionType FILE_SYSTEM_ALIAS_DISASSOCIATION
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.