Enum FindingDetails.Type
- java.lang.Object
-
- java.lang.Enum<FindingDetails.Type>
-
- software.amazon.awssdk.services.accessanalyzer.model.FindingDetails.Type
-
- All Implemented Interfaces:
Serializable,Comparable<FindingDetails.Type>
- Enclosing class:
- FindingDetails
public static enum FindingDetails.Type extends Enum<FindingDetails.Type>
- See Also:
FindingDetails.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXTERNAL_ACCESS_DETAILSUNKNOWN_TO_SDK_VERSIONUNUSED_IAM_ROLE_DETAILSUNUSED_IAM_USER_ACCESS_KEY_DETAILSUNUSED_IAM_USER_PASSWORD_DETAILSUNUSED_PERMISSION_DETAILS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FindingDetails.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static FindingDetails.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXTERNAL_ACCESS_DETAILS
public static final FindingDetails.Type EXTERNAL_ACCESS_DETAILS
-
UNUSED_PERMISSION_DETAILS
public static final FindingDetails.Type UNUSED_PERMISSION_DETAILS
-
UNUSED_IAM_USER_ACCESS_KEY_DETAILS
public static final FindingDetails.Type UNUSED_IAM_USER_ACCESS_KEY_DETAILS
-
UNUSED_IAM_ROLE_DETAILS
public static final FindingDetails.Type UNUSED_IAM_ROLE_DETAILS
-
UNUSED_IAM_USER_PASSWORD_DETAILS
public static final FindingDetails.Type UNUSED_IAM_USER_PASSWORD_DETAILS
-
UNKNOWN_TO_SDK_VERSION
public static final FindingDetails.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static FindingDetails.Type[] 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 (FindingDetails.Type c : FindingDetails.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FindingDetails.Type 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
-
-