Enum LaunchProfileValidationStatusCode
- java.lang.Object
-
- java.lang.Enum<LaunchProfileValidationStatusCode>
-
- software.amazon.awssdk.services.nimble.model.LaunchProfileValidationStatusCode
-
- All Implemented Interfaces:
Serializable,Comparable<LaunchProfileValidationStatusCode>
@Generated("software.amazon.awssdk:codegen") public enum LaunchProfileValidationStatusCode extends Enum<LaunchProfileValidationStatusCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LaunchProfileValidationStatusCodefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<LaunchProfileValidationStatusCode>knownValues()StringtoString()static LaunchProfileValidationStatusCodevalueOf(String name)Returns the enum constant of this type with the specified name.static LaunchProfileValidationStatusCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VALIDATION_NOT_STARTED
public static final LaunchProfileValidationStatusCode VALIDATION_NOT_STARTED
-
VALIDATION_IN_PROGRESS
public static final LaunchProfileValidationStatusCode VALIDATION_IN_PROGRESS
-
VALIDATION_SUCCESS
public static final LaunchProfileValidationStatusCode VALIDATION_SUCCESS
-
VALIDATION_FAILED_INVALID_SUBNET_ROUTE_TABLE_ASSOCIATION
public static final LaunchProfileValidationStatusCode VALIDATION_FAILED_INVALID_SUBNET_ROUTE_TABLE_ASSOCIATION
-
VALIDATION_FAILED_SUBNET_NOT_FOUND
public static final LaunchProfileValidationStatusCode VALIDATION_FAILED_SUBNET_NOT_FOUND
-
VALIDATION_FAILED_INVALID_SECURITY_GROUP_ASSOCIATION
public static final LaunchProfileValidationStatusCode VALIDATION_FAILED_INVALID_SECURITY_GROUP_ASSOCIATION
-
VALIDATION_FAILED_INVALID_ACTIVE_DIRECTORY
public static final LaunchProfileValidationStatusCode VALIDATION_FAILED_INVALID_ACTIVE_DIRECTORY
-
VALIDATION_FAILED_UNAUTHORIZED
public static final LaunchProfileValidationStatusCode VALIDATION_FAILED_UNAUTHORIZED
-
VALIDATION_FAILED_INTERNAL_SERVER_ERROR
public static final LaunchProfileValidationStatusCode VALIDATION_FAILED_INTERNAL_SERVER_ERROR
-
UNKNOWN_TO_SDK_VERSION
public static final LaunchProfileValidationStatusCode UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static LaunchProfileValidationStatusCode[] 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 (LaunchProfileValidationStatusCode c : LaunchProfileValidationStatusCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LaunchProfileValidationStatusCode 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<LaunchProfileValidationStatusCode>
-
fromValue
public static LaunchProfileValidationStatusCode 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:
- LaunchProfileValidationStatusCode corresponding to the value
-
knownValues
public static Set<LaunchProfileValidationStatusCode> 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 knownLaunchProfileValidationStatusCodes
-
-