@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum ConfigChangeStatus extends Enum<ConfigChangeStatus>
Enum Constant and Description |
---|
ApplyingChanges |
Cancelled |
Completed |
Initializing |
Pending |
PendingUserInput |
Validating |
ValidationFailed |
Modifier and Type | Method and Description |
---|---|
static ConfigChangeStatus |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static ConfigChangeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigChangeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigChangeStatus Pending
public static final ConfigChangeStatus Initializing
public static final ConfigChangeStatus Validating
public static final ConfigChangeStatus ValidationFailed
public static final ConfigChangeStatus ApplyingChanges
public static final ConfigChangeStatus Completed
public static final ConfigChangeStatus PendingUserInput
public static final ConfigChangeStatus Cancelled
public static ConfigChangeStatus[] values()
for (ConfigChangeStatus c : ConfigChangeStatus.values()) System.out.println(c);
public static ConfigChangeStatus 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<ConfigChangeStatus>
public static ConfigChangeStatus fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.