Enum InstanceOnboardingJobFailureCode
- java.lang.Object
-
- java.lang.Enum<InstanceOnboardingJobFailureCode>
-
- software.amazon.awssdk.services.connectcampaigns.model.InstanceOnboardingJobFailureCode
-
- All Implemented Interfaces:
Serializable,Comparable<InstanceOnboardingJobFailureCode>
@Generated("software.amazon.awssdk:codegen") public enum InstanceOnboardingJobFailureCode extends Enum<InstanceOnboardingJobFailureCode>
Enumeration of the possible failure codes for instance onboarding job
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EVENT_BRIDGE_ACCESS_DENIEDEVENT_BRIDGE_MANAGED_RULE_LIMIT_EXCEEDEDIAM_ACCESS_DENIEDINTERNAL_FAILUREKMS_ACCESS_DENIEDKMS_KEY_NOT_FOUNDUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InstanceOnboardingJobFailureCodefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<InstanceOnboardingJobFailureCode>knownValues()StringtoString()static InstanceOnboardingJobFailureCodevalueOf(String name)Returns the enum constant of this type with the specified name.static InstanceOnboardingJobFailureCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EVENT_BRIDGE_ACCESS_DENIED
public static final InstanceOnboardingJobFailureCode EVENT_BRIDGE_ACCESS_DENIED
-
EVENT_BRIDGE_MANAGED_RULE_LIMIT_EXCEEDED
public static final InstanceOnboardingJobFailureCode EVENT_BRIDGE_MANAGED_RULE_LIMIT_EXCEEDED
-
IAM_ACCESS_DENIED
public static final InstanceOnboardingJobFailureCode IAM_ACCESS_DENIED
-
KMS_ACCESS_DENIED
public static final InstanceOnboardingJobFailureCode KMS_ACCESS_DENIED
-
KMS_KEY_NOT_FOUND
public static final InstanceOnboardingJobFailureCode KMS_KEY_NOT_FOUND
-
INTERNAL_FAILURE
public static final InstanceOnboardingJobFailureCode INTERNAL_FAILURE
-
UNKNOWN_TO_SDK_VERSION
public static final InstanceOnboardingJobFailureCode UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static InstanceOnboardingJobFailureCode[] 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 (InstanceOnboardingJobFailureCode c : InstanceOnboardingJobFailureCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InstanceOnboardingJobFailureCode 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<InstanceOnboardingJobFailureCode>
-
fromValue
public static InstanceOnboardingJobFailureCode 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:
- InstanceOnboardingJobFailureCode corresponding to the value
-
knownValues
public static Set<InstanceOnboardingJobFailureCode> 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 knownInstanceOnboardingJobFailureCodes
-
-