Enum ConstraintViolationExceptionReason
- java.lang.Object
-
- java.lang.Enum<ConstraintViolationExceptionReason>
-
- software.amazon.awssdk.services.organizations.model.ConstraintViolationExceptionReason
-
- All Implemented Interfaces:
Serializable,Comparable<ConstraintViolationExceptionReason>
@Generated("software.amazon.awssdk:codegen") public enum ConstraintViolationExceptionReason extends Enum<ConstraintViolationExceptionReason>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConstraintViolationExceptionReasonfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ConstraintViolationExceptionReason>knownValues()StringtoString()static ConstraintViolationExceptionReasonvalueOf(String name)Returns the enum constant of this type with the specified name.static ConstraintViolationExceptionReason[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNT_NUMBER_LIMIT_EXCEEDED
public static final ConstraintViolationExceptionReason ACCOUNT_NUMBER_LIMIT_EXCEEDED
-
HANDSHAKE_RATE_LIMIT_EXCEEDED
public static final ConstraintViolationExceptionReason HANDSHAKE_RATE_LIMIT_EXCEEDED
-
OU_NUMBER_LIMIT_EXCEEDED
public static final ConstraintViolationExceptionReason OU_NUMBER_LIMIT_EXCEEDED
-
OU_DEPTH_LIMIT_EXCEEDED
public static final ConstraintViolationExceptionReason OU_DEPTH_LIMIT_EXCEEDED
-
POLICY_NUMBER_LIMIT_EXCEEDED
public static final ConstraintViolationExceptionReason POLICY_NUMBER_LIMIT_EXCEEDED
-
POLICY_CONTENT_LIMIT_EXCEEDED
public static final ConstraintViolationExceptionReason POLICY_CONTENT_LIMIT_EXCEEDED
-
MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED
public static final ConstraintViolationExceptionReason MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED
-
MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED
public static final ConstraintViolationExceptionReason MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED
-
ACCOUNT_CANNOT_LEAVE_ORGANIZATION
public static final ConstraintViolationExceptionReason ACCOUNT_CANNOT_LEAVE_ORGANIZATION
-
ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA
public static final ConstraintViolationExceptionReason ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA
-
ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION
public static final ConstraintViolationExceptionReason ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION
-
MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED
public static final ConstraintViolationExceptionReason MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED
-
MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED
public static final ConstraintViolationExceptionReason MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED
-
ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED
public static final ConstraintViolationExceptionReason ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED
-
MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE
public static final ConstraintViolationExceptionReason MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE
-
MASTER_ACCOUNT_MISSING_CONTACT_INFO
public static final ConstraintViolationExceptionReason MASTER_ACCOUNT_MISSING_CONTACT_INFO
-
MASTER_ACCOUNT_NOT_GOVCLOUD_ENABLED
public static final ConstraintViolationExceptionReason MASTER_ACCOUNT_NOT_GOVCLOUD_ENABLED
-
ORGANIZATION_NOT_IN_ALL_FEATURES_MODE
public static final ConstraintViolationExceptionReason ORGANIZATION_NOT_IN_ALL_FEATURES_MODE
-
CREATE_ORGANIZATION_IN_BILLING_MODE_UNSUPPORTED_REGION
public static final ConstraintViolationExceptionReason CREATE_ORGANIZATION_IN_BILLING_MODE_UNSUPPORTED_REGION
-
EMAIL_VERIFICATION_CODE_EXPIRED
public static final ConstraintViolationExceptionReason EMAIL_VERIFICATION_CODE_EXPIRED
-
WAIT_PERIOD_ACTIVE
public static final ConstraintViolationExceptionReason WAIT_PERIOD_ACTIVE
-
MAX_TAG_LIMIT_EXCEEDED
public static final ConstraintViolationExceptionReason MAX_TAG_LIMIT_EXCEEDED
-
TAG_POLICY_VIOLATION
public static final ConstraintViolationExceptionReason TAG_POLICY_VIOLATION
-
MAX_DELEGATED_ADMINISTRATORS_FOR_SERVICE_LIMIT_EXCEEDED
public static final ConstraintViolationExceptionReason MAX_DELEGATED_ADMINISTRATORS_FOR_SERVICE_LIMIT_EXCEEDED
-
CANNOT_REGISTER_MASTER_AS_DELEGATED_ADMINISTRATOR
public static final ConstraintViolationExceptionReason CANNOT_REGISTER_MASTER_AS_DELEGATED_ADMINISTRATOR
-
CANNOT_REMOVE_DELEGATED_ADMINISTRATOR_FROM_ORG
public static final ConstraintViolationExceptionReason CANNOT_REMOVE_DELEGATED_ADMINISTRATOR_FROM_ORG
-
DELEGATED_ADMINISTRATOR_EXISTS_FOR_THIS_SERVICE
public static final ConstraintViolationExceptionReason DELEGATED_ADMINISTRATOR_EXISTS_FOR_THIS_SERVICE
-
MASTER_ACCOUNT_MISSING_BUSINESS_LICENSE
public static final ConstraintViolationExceptionReason MASTER_ACCOUNT_MISSING_BUSINESS_LICENSE
-
CANNOT_CLOSE_MANAGEMENT_ACCOUNT
public static final ConstraintViolationExceptionReason CANNOT_CLOSE_MANAGEMENT_ACCOUNT
-
CLOSE_ACCOUNT_QUOTA_EXCEEDED
public static final ConstraintViolationExceptionReason CLOSE_ACCOUNT_QUOTA_EXCEEDED
-
CLOSE_ACCOUNT_REQUESTS_LIMIT_EXCEEDED
public static final ConstraintViolationExceptionReason CLOSE_ACCOUNT_REQUESTS_LIMIT_EXCEEDED
-
SERVICE_ACCESS_NOT_ENABLED
public static final ConstraintViolationExceptionReason SERVICE_ACCESS_NOT_ENABLED
-
INVALID_PAYMENT_INSTRUMENT
public static final ConstraintViolationExceptionReason INVALID_PAYMENT_INSTRUMENT
-
ACCOUNT_CREATION_NOT_COMPLETE
public static final ConstraintViolationExceptionReason ACCOUNT_CREATION_NOT_COMPLETE
-
UNKNOWN_TO_SDK_VERSION
public static final ConstraintViolationExceptionReason UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ConstraintViolationExceptionReason[] 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 (ConstraintViolationExceptionReason c : ConstraintViolationExceptionReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConstraintViolationExceptionReason 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<ConstraintViolationExceptionReason>
-
fromValue
public static ConstraintViolationExceptionReason 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:
- ConstraintViolationExceptionReason corresponding to the value
-
knownValues
public static Set<ConstraintViolationExceptionReason> 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 knownConstraintViolationExceptionReasons
-
-