Enum ServiceQuotaExceededExceptionReason
- java.lang.Object
-
- java.lang.Enum<ServiceQuotaExceededExceptionReason>
-
- software.amazon.awssdk.services.pinpointsmsvoicev2.model.ServiceQuotaExceededExceptionReason
-
- All Implemented Interfaces:
Serializable,Comparable<ServiceQuotaExceededExceptionReason>
@Generated("software.amazon.awssdk:codegen") public enum ServiceQuotaExceededExceptionReason extends Enum<ServiceQuotaExceededExceptionReason>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ServiceQuotaExceededExceptionReasonfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ServiceQuotaExceededExceptionReason>knownValues()StringtoString()static ServiceQuotaExceededExceptionReasonvalueOf(String name)Returns the enum constant of this type with the specified name.static ServiceQuotaExceededExceptionReason[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASSOCIATIONS_PER_REGISTRATION
public static final ServiceQuotaExceededExceptionReason ASSOCIATIONS_PER_REGISTRATION
-
CONFIGURATION_SETS_PER_ACCOUNT
public static final ServiceQuotaExceededExceptionReason CONFIGURATION_SETS_PER_ACCOUNT
-
DAILY_DESTINATION_CALL_LIMIT
public static final ServiceQuotaExceededExceptionReason DAILY_DESTINATION_CALL_LIMIT
-
EVENT_DESTINATIONS_PER_CONFIGURATION_SET
public static final ServiceQuotaExceededExceptionReason EVENT_DESTINATIONS_PER_CONFIGURATION_SET
-
KEYWORDS_PER_PHONE_NUMBER
public static final ServiceQuotaExceededExceptionReason KEYWORDS_PER_PHONE_NUMBER
-
KEYWORDS_PER_POOL
public static final ServiceQuotaExceededExceptionReason KEYWORDS_PER_POOL
-
MONTHLY_SPEND_LIMIT_REACHED_FOR_MEDIA
public static final ServiceQuotaExceededExceptionReason MONTHLY_SPEND_LIMIT_REACHED_FOR_MEDIA
-
MONTHLY_SPEND_LIMIT_REACHED_FOR_TEXT
public static final ServiceQuotaExceededExceptionReason MONTHLY_SPEND_LIMIT_REACHED_FOR_TEXT
-
MONTHLY_SPEND_LIMIT_REACHED_FOR_VOICE
public static final ServiceQuotaExceededExceptionReason MONTHLY_SPEND_LIMIT_REACHED_FOR_VOICE
-
OPT_OUT_LISTS_PER_ACCOUNT
public static final ServiceQuotaExceededExceptionReason OPT_OUT_LISTS_PER_ACCOUNT
-
ORIGINATION_IDENTITIES_PER_POOL
public static final ServiceQuotaExceededExceptionReason ORIGINATION_IDENTITIES_PER_POOL
-
PHONE_NUMBERS_PER_ACCOUNT
public static final ServiceQuotaExceededExceptionReason PHONE_NUMBERS_PER_ACCOUNT
-
PHONE_NUMBERS_PER_REGISTRATION
public static final ServiceQuotaExceededExceptionReason PHONE_NUMBERS_PER_REGISTRATION
-
POOLS_PER_ACCOUNT
public static final ServiceQuotaExceededExceptionReason POOLS_PER_ACCOUNT
-
REGISTRATION_ATTACHMENTS_CREATED_PER_DAY
public static final ServiceQuotaExceededExceptionReason REGISTRATION_ATTACHMENTS_CREATED_PER_DAY
-
REGISTRATION_ATTACHMENTS_PER_ACCOUNT
public static final ServiceQuotaExceededExceptionReason REGISTRATION_ATTACHMENTS_PER_ACCOUNT
-
REGISTRATION_VERSIONS_CREATED_PER_DAY
public static final ServiceQuotaExceededExceptionReason REGISTRATION_VERSIONS_CREATED_PER_DAY
-
REGISTRATIONS_PER_ACCOUNT
public static final ServiceQuotaExceededExceptionReason REGISTRATIONS_PER_ACCOUNT
-
SENDER_IDS_PER_ACCOUNT
public static final ServiceQuotaExceededExceptionReason SENDER_IDS_PER_ACCOUNT
-
TAGS_PER_RESOURCE
public static final ServiceQuotaExceededExceptionReason TAGS_PER_RESOURCE
-
VERIFIED_DESTINATION_NUMBERS_PER_ACCOUNT
public static final ServiceQuotaExceededExceptionReason VERIFIED_DESTINATION_NUMBERS_PER_ACCOUNT
-
VERIFICATION_ATTEMPTS_PER_DAY
public static final ServiceQuotaExceededExceptionReason VERIFICATION_ATTEMPTS_PER_DAY
-
PROTECT_CONFIGURATIONS_PER_ACCOUNT
public static final ServiceQuotaExceededExceptionReason PROTECT_CONFIGURATIONS_PER_ACCOUNT
-
UNKNOWN_TO_SDK_VERSION
public static final ServiceQuotaExceededExceptionReason UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ServiceQuotaExceededExceptionReason[] 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 (ServiceQuotaExceededExceptionReason c : ServiceQuotaExceededExceptionReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServiceQuotaExceededExceptionReason 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<ServiceQuotaExceededExceptionReason>
-
fromValue
public static ServiceQuotaExceededExceptionReason 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:
- ServiceQuotaExceededExceptionReason corresponding to the value
-
knownValues
public static Set<ServiceQuotaExceededExceptionReason> 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 knownServiceQuotaExceededExceptionReasons
-
-