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