Enum StudioStatusCode
- java.lang.Object
-
- java.lang.Enum<StudioStatusCode>
-
- software.amazon.awssdk.services.nimble.model.StudioStatusCode
-
- All Implemented Interfaces:
Serializable,Comparable<StudioStatusCode>
@Generated("software.amazon.awssdk:codegen") public enum StudioStatusCode extends Enum<StudioStatusCode>
The status code.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StudioStatusCodefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<StudioStatusCode>knownValues()StringtoString()static StudioStatusCodevalueOf(String name)Returns the enum constant of this type with the specified name.static StudioStatusCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STUDIO_CREATED
public static final StudioStatusCode STUDIO_CREATED
-
STUDIO_DELETED
public static final StudioStatusCode STUDIO_DELETED
-
STUDIO_UPDATED
public static final StudioStatusCode STUDIO_UPDATED
-
STUDIO_CREATE_IN_PROGRESS
public static final StudioStatusCode STUDIO_CREATE_IN_PROGRESS
-
STUDIO_UPDATE_IN_PROGRESS
public static final StudioStatusCode STUDIO_UPDATE_IN_PROGRESS
-
STUDIO_DELETE_IN_PROGRESS
public static final StudioStatusCode STUDIO_DELETE_IN_PROGRESS
-
STUDIO_WITH_LAUNCH_PROFILES_NOT_DELETED
public static final StudioStatusCode STUDIO_WITH_LAUNCH_PROFILES_NOT_DELETED
-
STUDIO_WITH_STUDIO_COMPONENTS_NOT_DELETED
public static final StudioStatusCode STUDIO_WITH_STUDIO_COMPONENTS_NOT_DELETED
-
STUDIO_WITH_STREAMING_IMAGES_NOT_DELETED
public static final StudioStatusCode STUDIO_WITH_STREAMING_IMAGES_NOT_DELETED
-
AWS_SSO_NOT_ENABLED
public static final StudioStatusCode AWS_SSO_NOT_ENABLED
-
AWS_SSO_ACCESS_DENIED
public static final StudioStatusCode AWS_SSO_ACCESS_DENIED
-
ROLE_NOT_OWNED_BY_STUDIO_OWNER
public static final StudioStatusCode ROLE_NOT_OWNED_BY_STUDIO_OWNER
-
ROLE_COULD_NOT_BE_ASSUMED
public static final StudioStatusCode ROLE_COULD_NOT_BE_ASSUMED
-
INTERNAL_ERROR
public static final StudioStatusCode INTERNAL_ERROR
-
ENCRYPTION_KEY_NOT_FOUND
public static final StudioStatusCode ENCRYPTION_KEY_NOT_FOUND
-
ENCRYPTION_KEY_ACCESS_DENIED
public static final StudioStatusCode ENCRYPTION_KEY_ACCESS_DENIED
-
AWS_SSO_CONFIGURATION_REPAIRED
public static final StudioStatusCode AWS_SSO_CONFIGURATION_REPAIRED
-
AWS_SSO_CONFIGURATION_REPAIR_IN_PROGRESS
public static final StudioStatusCode AWS_SSO_CONFIGURATION_REPAIR_IN_PROGRESS
-
AWS_STS_REGION_DISABLED
public static final StudioStatusCode AWS_STS_REGION_DISABLED
-
UNKNOWN_TO_SDK_VERSION
public static final StudioStatusCode UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static StudioStatusCode[] 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 (StudioStatusCode c : StudioStatusCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StudioStatusCode 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<StudioStatusCode>
-
fromValue
public static StudioStatusCode 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:
- StudioStatusCode corresponding to the value
-
knownValues
public static Set<StudioStatusCode> 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 knownStudioStatusCodes
-
-