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