@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum UnavailabilityReasonCode extends Enum<UnavailabilityReasonCode>
Specifies why occurrences of sensitive data can't be retrieved for a finding. Possible values are:
Enum Constant and Description |
---|
INVALID_CLASSIFICATION_RESULT |
OBJECT_EXCEEDS_SIZE_QUOTA |
OBJECT_UNAVAILABLE |
UNSUPPORTED_FINDING_TYPE |
UNSUPPORTED_OBJECT_TYPE |
Modifier and Type | Method and Description |
---|---|
static UnavailabilityReasonCode |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static UnavailabilityReasonCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnavailabilityReasonCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnavailabilityReasonCode OBJECT_EXCEEDS_SIZE_QUOTA
public static final UnavailabilityReasonCode UNSUPPORTED_OBJECT_TYPE
public static final UnavailabilityReasonCode UNSUPPORTED_FINDING_TYPE
public static final UnavailabilityReasonCode INVALID_CLASSIFICATION_RESULT
public static final UnavailabilityReasonCode OBJECT_UNAVAILABLE
public static UnavailabilityReasonCode[] values()
for (UnavailabilityReasonCode c : UnavailabilityReasonCode.values()) System.out.println(c);
public static UnavailabilityReasonCode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<UnavailabilityReasonCode>
public static UnavailabilityReasonCode fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.