Enum HandlerErrorCode
- java.lang.Object
-
- java.lang.Enum<HandlerErrorCode>
-
- software.amazon.awssdk.services.cloudformation.model.HandlerErrorCode
-
- All Implemented Interfaces:
Serializable
,Comparable<HandlerErrorCode>
@Generated("software.amazon.awssdk:codegen") public enum HandlerErrorCode extends Enum<HandlerErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HandlerErrorCode
fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<HandlerErrorCode>
knownValues()
String
toString()
static HandlerErrorCode
valueOf(String name)
Returns the enum constant of this type with the specified name.static HandlerErrorCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_UPDATABLE
public static final HandlerErrorCode NOT_UPDATABLE
-
INVALID_REQUEST
public static final HandlerErrorCode INVALID_REQUEST
-
ACCESS_DENIED
public static final HandlerErrorCode ACCESS_DENIED
-
INVALID_CREDENTIALS
public static final HandlerErrorCode INVALID_CREDENTIALS
-
ALREADY_EXISTS
public static final HandlerErrorCode ALREADY_EXISTS
-
NOT_FOUND
public static final HandlerErrorCode NOT_FOUND
-
RESOURCE_CONFLICT
public static final HandlerErrorCode RESOURCE_CONFLICT
-
THROTTLING
public static final HandlerErrorCode THROTTLING
-
SERVICE_LIMIT_EXCEEDED
public static final HandlerErrorCode SERVICE_LIMIT_EXCEEDED
-
NOT_STABILIZED
public static final HandlerErrorCode NOT_STABILIZED
-
GENERAL_SERVICE_EXCEPTION
public static final HandlerErrorCode GENERAL_SERVICE_EXCEPTION
-
SERVICE_INTERNAL_ERROR
public static final HandlerErrorCode SERVICE_INTERNAL_ERROR
-
NETWORK_FAILURE
public static final HandlerErrorCode NETWORK_FAILURE
-
INTERNAL_FAILURE
public static final HandlerErrorCode INTERNAL_FAILURE
-
INVALID_TYPE_CONFIGURATION
public static final HandlerErrorCode INVALID_TYPE_CONFIGURATION
-
HANDLER_INTERNAL_FAILURE
public static final HandlerErrorCode HANDLER_INTERNAL_FAILURE
-
NON_COMPLIANT
public static final HandlerErrorCode NON_COMPLIANT
-
UNKNOWN
public static final HandlerErrorCode UNKNOWN
-
UNSUPPORTED_TARGET
public static final HandlerErrorCode UNSUPPORTED_TARGET
-
UNKNOWN_TO_SDK_VERSION
public static final HandlerErrorCode UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static HandlerErrorCode[] 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 (HandlerErrorCode c : HandlerErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HandlerErrorCode 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:
toString
in classEnum<HandlerErrorCode>
-
fromValue
public static HandlerErrorCode 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:
- HandlerErrorCode corresponding to the value
-
knownValues
public static Set<HandlerErrorCode> knownValues()
Use this in place ofvalues()
to return aSet
of all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION
.- Returns:
- a
Set
of knownHandlerErrorCode
s
-
-