Enum UnavailabilityReasonCode
- java.lang.Object
-
- java.lang.Enum<UnavailabilityReasonCode>
-
- software.amazon.awssdk.services.macie2.model.UnavailabilityReasonCode
-
- All Implemented Interfaces:
Serializable,Comparable<UnavailabilityReasonCode>
@Generated("software.amazon.awssdk:codegen") public enum UnavailabilityReasonCode extends Enum<UnavailabilityReasonCode>
Specifies why occurrences of sensitive data can't be retrieved for a finding. Possible values are:
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UnavailabilityReasonCodefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<UnavailabilityReasonCode>knownValues()StringtoString()static UnavailabilityReasonCodevalueOf(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.
-
-
-
Enum Constant Detail
-
OBJECT_EXCEEDS_SIZE_QUOTA
public static final UnavailabilityReasonCode OBJECT_EXCEEDS_SIZE_QUOTA
-
UNSUPPORTED_OBJECT_TYPE
public static final UnavailabilityReasonCode UNSUPPORTED_OBJECT_TYPE
-
UNSUPPORTED_FINDING_TYPE
public static final UnavailabilityReasonCode UNSUPPORTED_FINDING_TYPE
-
INVALID_CLASSIFICATION_RESULT
public static final UnavailabilityReasonCode INVALID_CLASSIFICATION_RESULT
-
OBJECT_UNAVAILABLE
public static final UnavailabilityReasonCode OBJECT_UNAVAILABLE
-
ACCOUNT_NOT_IN_ORGANIZATION
public static final UnavailabilityReasonCode ACCOUNT_NOT_IN_ORGANIZATION
-
MISSING_GET_MEMBER_PERMISSION
public static final UnavailabilityReasonCode MISSING_GET_MEMBER_PERMISSION
-
ROLE_TOO_PERMISSIVE
public static final UnavailabilityReasonCode ROLE_TOO_PERMISSIVE
-
MEMBER_ROLE_TOO_PERMISSIVE
public static final UnavailabilityReasonCode MEMBER_ROLE_TOO_PERMISSIVE
-
INVALID_RESULT_SIGNATURE
public static final UnavailabilityReasonCode INVALID_RESULT_SIGNATURE
-
RESULT_NOT_SIGNED
public static final UnavailabilityReasonCode RESULT_NOT_SIGNED
-
UNKNOWN_TO_SDK_VERSION
public static final UnavailabilityReasonCode UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static UnavailabilityReasonCode[] 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 (UnavailabilityReasonCode c : UnavailabilityReasonCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UnavailabilityReasonCode 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<UnavailabilityReasonCode>
-
fromValue
public static UnavailabilityReasonCode 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:
- UnavailabilityReasonCode corresponding to the value
-
knownValues
public static Set<UnavailabilityReasonCode> 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 knownUnavailabilityReasonCodes
-
-