Enum ServiceQuotaWarningStatus
java.lang.Object
java.lang.Enum<ServiceQuotaWarningStatus>
software.amazon.awssdk.services.arcregionswitch.model.ServiceQuotaWarningStatus
- All Implemented Interfaces:
Serializable,Comparable<ServiceQuotaWarningStatus>
@Generated("software.amazon.awssdk:codegen")
public enum ServiceQuotaWarningStatus
extends Enum<ServiceQuotaWarningStatus>
The status of a service quota warning. Valid values:
pending - Region switch submitted a quota increase request that is still open.
denied - The quota increase request was denied.
insufficientPermissions - The plan's execution role is missing a permission that service quota checks
require.
maxRegionSwitchRequestsExceeded - Region switch reached its limit on the number of open quota increase
requests.
maxAccountRequestsExceeded - The account reached the maximum number of open quota increase requests.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic ServiceQuotaWarningStatusUse this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ServiceQuotaWarningStatus> toString()static ServiceQuotaWarningStatusReturns the enum constant of this type with the specified name.static ServiceQuotaWarningStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PENDING
-
DENIED
-
INSUFFICIENT_PERMISSIONS
-
MAX_REGION_SWITCH_REQUESTS_EXCEEDED
-
MAX_ACCOUNT_REQUESTS_EXCEEDED
-
UNKNOWN_TO_SDK_VERSION
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
- Overrides:
toStringin classEnum<ServiceQuotaWarningStatus>
-
fromValue
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- ServiceQuotaWarningStatus corresponding to the value
-
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 knownServiceQuotaWarningStatuss
-