@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum StudioComponentStatusCode extends Enum<StudioComponentStatusCode>
The current status of the studio component resource.
When the resource is in the 'READY' state, the status code signals what the last mutation made to the resource was.
When the resource is in a CREATE_FAILED/UPDATE_FAILED/DELETE_FAILED state, the status code signals what went wrong and why the mutation failed.
Modifier and Type | Method and Description |
---|---|
static StudioComponentStatusCode |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static StudioComponentStatusCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StudioComponentStatusCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StudioComponentStatusCode ACTIVE_DIRECTORY_ALREADY_EXISTS
public static final StudioComponentStatusCode STUDIO_COMPONENT_CREATED
public static final StudioComponentStatusCode STUDIO_COMPONENT_UPDATED
public static final StudioComponentStatusCode STUDIO_COMPONENT_DELETED
public static final StudioComponentStatusCode ENCRYPTION_KEY_ACCESS_DENIED
public static final StudioComponentStatusCode ENCRYPTION_KEY_NOT_FOUND
public static final StudioComponentStatusCode STUDIO_COMPONENT_CREATE_IN_PROGRESS
public static final StudioComponentStatusCode STUDIO_COMPONENT_UPDATE_IN_PROGRESS
public static final StudioComponentStatusCode STUDIO_COMPONENT_DELETE_IN_PROGRESS
public static final StudioComponentStatusCode INTERNAL_ERROR
public static StudioComponentStatusCode[] values()
for (StudioComponentStatusCode c : StudioComponentStatusCode.values()) System.out.println(c);
public static StudioComponentStatusCode 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<StudioComponentStatusCode>
public static StudioComponentStatusCode fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.