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