Enum CreateAccountFailureReason
- java.lang.Object
-
- java.lang.Enum<CreateAccountFailureReason>
-
- software.amazon.awssdk.services.organizations.model.CreateAccountFailureReason
-
- All Implemented Interfaces:
Serializable,Comparable<CreateAccountFailureReason>
@Generated("software.amazon.awssdk:codegen") public enum CreateAccountFailureReason extends Enum<CreateAccountFailureReason>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CreateAccountFailureReasonfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<CreateAccountFailureReason>knownValues()StringtoString()static CreateAccountFailureReasonvalueOf(String name)Returns the enum constant of this type with the specified name.static CreateAccountFailureReason[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNT_LIMIT_EXCEEDED
public static final CreateAccountFailureReason ACCOUNT_LIMIT_EXCEEDED
-
EMAIL_ALREADY_EXISTS
public static final CreateAccountFailureReason EMAIL_ALREADY_EXISTS
-
INVALID_ADDRESS
public static final CreateAccountFailureReason INVALID_ADDRESS
-
INVALID_EMAIL
public static final CreateAccountFailureReason INVALID_EMAIL
-
CONCURRENT_ACCOUNT_MODIFICATION
public static final CreateAccountFailureReason CONCURRENT_ACCOUNT_MODIFICATION
-
INTERNAL_FAILURE
public static final CreateAccountFailureReason INTERNAL_FAILURE
-
GOVCLOUD_ACCOUNT_ALREADY_EXISTS
public static final CreateAccountFailureReason GOVCLOUD_ACCOUNT_ALREADY_EXISTS
-
MISSING_BUSINESS_VALIDATION
public static final CreateAccountFailureReason MISSING_BUSINESS_VALIDATION
-
FAILED_BUSINESS_VALIDATION
public static final CreateAccountFailureReason FAILED_BUSINESS_VALIDATION
-
PENDING_BUSINESS_VALIDATION
public static final CreateAccountFailureReason PENDING_BUSINESS_VALIDATION
-
INVALID_IDENTITY_FOR_BUSINESS_VALIDATION
public static final CreateAccountFailureReason INVALID_IDENTITY_FOR_BUSINESS_VALIDATION
-
UNKNOWN_BUSINESS_VALIDATION
public static final CreateAccountFailureReason UNKNOWN_BUSINESS_VALIDATION
-
MISSING_PAYMENT_INSTRUMENT
public static final CreateAccountFailureReason MISSING_PAYMENT_INSTRUMENT
-
INVALID_PAYMENT_INSTRUMENT
public static final CreateAccountFailureReason INVALID_PAYMENT_INSTRUMENT
-
UPDATE_EXISTING_RESOURCE_POLICY_WITH_TAGS_NOT_SUPPORTED
public static final CreateAccountFailureReason UPDATE_EXISTING_RESOURCE_POLICY_WITH_TAGS_NOT_SUPPORTED
-
UNKNOWN_TO_SDK_VERSION
public static final CreateAccountFailureReason UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static CreateAccountFailureReason[] 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 (CreateAccountFailureReason c : CreateAccountFailureReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CreateAccountFailureReason 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<CreateAccountFailureReason>
-
fromValue
public static CreateAccountFailureReason 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:
- CreateAccountFailureReason corresponding to the value
-
knownValues
public static Set<CreateAccountFailureReason> 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 knownCreateAccountFailureReasons
-
-