Enum StudioComponentStatusCode
- java.lang.Object
-
- java.lang.Enum<StudioComponentStatusCode>
-
- software.amazon.awssdk.services.nimble.model.StudioComponentStatusCode
-
- All Implemented Interfaces:
Serializable,Comparable<StudioComponentStatusCode>
@Generated("software.amazon.awssdk:codegen") public enum StudioComponentStatusCode extends Enum<StudioComponentStatusCode>
The current status of the studio component resource.
When the resource is in the
READYstate, the status code signals what the last mutation made to the resource was.When the resource is in a
CREATE_FAILED,UPDATE_FAILED, orDELETE_FAILEDstate, the status code signals what went wrong and why the mutation failed.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StudioComponentStatusCodefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<StudioComponentStatusCode>knownValues()StringtoString()static StudioComponentStatusCodevalueOf(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.
-
-
-
Enum Constant Detail
-
ACTIVE_DIRECTORY_ALREADY_EXISTS
public static final StudioComponentStatusCode ACTIVE_DIRECTORY_ALREADY_EXISTS
-
STUDIO_COMPONENT_CREATED
public static final StudioComponentStatusCode STUDIO_COMPONENT_CREATED
-
STUDIO_COMPONENT_UPDATED
public static final StudioComponentStatusCode STUDIO_COMPONENT_UPDATED
-
STUDIO_COMPONENT_DELETED
public static final StudioComponentStatusCode STUDIO_COMPONENT_DELETED
-
ENCRYPTION_KEY_ACCESS_DENIED
public static final StudioComponentStatusCode ENCRYPTION_KEY_ACCESS_DENIED
-
ENCRYPTION_KEY_NOT_FOUND
public static final StudioComponentStatusCode ENCRYPTION_KEY_NOT_FOUND
-
STUDIO_COMPONENT_CREATE_IN_PROGRESS
public static final StudioComponentStatusCode STUDIO_COMPONENT_CREATE_IN_PROGRESS
-
STUDIO_COMPONENT_UPDATE_IN_PROGRESS
public static final StudioComponentStatusCode STUDIO_COMPONENT_UPDATE_IN_PROGRESS
-
STUDIO_COMPONENT_DELETE_IN_PROGRESS
public static final StudioComponentStatusCode STUDIO_COMPONENT_DELETE_IN_PROGRESS
-
INTERNAL_ERROR
public static final StudioComponentStatusCode INTERNAL_ERROR
-
UNKNOWN_TO_SDK_VERSION
public static final StudioComponentStatusCode UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static StudioComponentStatusCode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StudioComponentStatusCode c : StudioComponentStatusCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StudioComponentStatusCode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<StudioComponentStatusCode>
-
fromValue
public static StudioComponentStatusCode fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- StudioComponentStatusCode corresponding to the value
-
knownValues
public static Set<StudioComponentStatusCode> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownStudioComponentStatusCodes
-
-