Enum FailureReason
- java.lang.Object
-
- java.lang.Enum<FailureReason>
-
- software.amazon.awssdk.services.acm.model.FailureReason
-
- All Implemented Interfaces:
Serializable
,Comparable<FailureReason>
@Generated("software.amazon.awssdk:codegen") public enum FailureReason extends Enum<FailureReason>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FailureReason
fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<FailureReason>
knownValues()
String
toString()
static FailureReason
valueOf(String name)
Returns the enum constant of this type with the specified name.static FailureReason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_AVAILABLE_CONTACTS
public static final FailureReason NO_AVAILABLE_CONTACTS
-
ADDITIONAL_VERIFICATION_REQUIRED
public static final FailureReason ADDITIONAL_VERIFICATION_REQUIRED
-
DOMAIN_NOT_ALLOWED
public static final FailureReason DOMAIN_NOT_ALLOWED
-
INVALID_PUBLIC_DOMAIN
public static final FailureReason INVALID_PUBLIC_DOMAIN
-
DOMAIN_VALIDATION_DENIED
public static final FailureReason DOMAIN_VALIDATION_DENIED
-
CAA_ERROR
public static final FailureReason CAA_ERROR
-
PCA_LIMIT_EXCEEDED
public static final FailureReason PCA_LIMIT_EXCEEDED
-
PCA_INVALID_ARN
public static final FailureReason PCA_INVALID_ARN
-
PCA_INVALID_STATE
public static final FailureReason PCA_INVALID_STATE
-
PCA_REQUEST_FAILED
public static final FailureReason PCA_REQUEST_FAILED
-
PCA_NAME_CONSTRAINTS_VALIDATION
public static final FailureReason PCA_NAME_CONSTRAINTS_VALIDATION
-
PCA_RESOURCE_NOT_FOUND
public static final FailureReason PCA_RESOURCE_NOT_FOUND
-
PCA_INVALID_ARGS
public static final FailureReason PCA_INVALID_ARGS
-
PCA_INVALID_DURATION
public static final FailureReason PCA_INVALID_DURATION
-
PCA_ACCESS_DENIED
public static final FailureReason PCA_ACCESS_DENIED
-
SLR_NOT_FOUND
public static final FailureReason SLR_NOT_FOUND
-
OTHER
public static final FailureReason OTHER
-
UNKNOWN_TO_SDK_VERSION
public static final FailureReason UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static FailureReason[] 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 (FailureReason c : FailureReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FailureReason 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<FailureReason>
-
fromValue
public static FailureReason 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:
- FailureReason corresponding to the value
-
knownValues
public static Set<FailureReason> 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 knownFailureReason
s
-
-