Enum AccessCheckResourceType
- java.lang.Object
-
- java.lang.Enum<AccessCheckResourceType>
-
- software.amazon.awssdk.services.accessanalyzer.model.AccessCheckResourceType
-
- All Implemented Interfaces:
Serializable,Comparable<AccessCheckResourceType>
@Generated("software.amazon.awssdk:codegen") public enum AccessCheckResourceType extends Enum<AccessCheckResourceType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AccessCheckResourceTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<AccessCheckResourceType>knownValues()StringtoString()static AccessCheckResourceTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AccessCheckResourceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AWS_DYNAMO_DB_TABLE
public static final AccessCheckResourceType AWS_DYNAMO_DB_TABLE
-
AWS_DYNAMO_DB_STREAM
public static final AccessCheckResourceType AWS_DYNAMO_DB_STREAM
-
AWS_EFS_FILE_SYSTEM
public static final AccessCheckResourceType AWS_EFS_FILE_SYSTEM
-
AWS_OPEN_SEARCH_SERVICE_DOMAIN
public static final AccessCheckResourceType AWS_OPEN_SEARCH_SERVICE_DOMAIN
-
AWS_KINESIS_STREAM
public static final AccessCheckResourceType AWS_KINESIS_STREAM
-
AWS_KINESIS_STREAM_CONSUMER
public static final AccessCheckResourceType AWS_KINESIS_STREAM_CONSUMER
-
AWS_KMS_KEY
public static final AccessCheckResourceType AWS_KMS_KEY
-
AWS_LAMBDA_FUNCTION
public static final AccessCheckResourceType AWS_LAMBDA_FUNCTION
-
AWS_S3_BUCKET
public static final AccessCheckResourceType AWS_S3_BUCKET
-
AWS_S3_ACCESS_POINT
public static final AccessCheckResourceType AWS_S3_ACCESS_POINT
-
AWS_S3_EXPRESS_DIRECTORY_BUCKET
public static final AccessCheckResourceType AWS_S3_EXPRESS_DIRECTORY_BUCKET
-
AWS_S3_GLACIER
public static final AccessCheckResourceType AWS_S3_GLACIER
-
AWS_S3_OUTPOSTS_BUCKET
public static final AccessCheckResourceType AWS_S3_OUTPOSTS_BUCKET
-
AWS_S3_OUTPOSTS_ACCESS_POINT
public static final AccessCheckResourceType AWS_S3_OUTPOSTS_ACCESS_POINT
-
AWS_SECRETS_MANAGER_SECRET
public static final AccessCheckResourceType AWS_SECRETS_MANAGER_SECRET
-
AWS_SNS_TOPIC
public static final AccessCheckResourceType AWS_SNS_TOPIC
-
AWS_SQS_QUEUE
public static final AccessCheckResourceType AWS_SQS_QUEUE
-
AWS_IAM_ASSUME_ROLE_POLICY_DOCUMENT
public static final AccessCheckResourceType AWS_IAM_ASSUME_ROLE_POLICY_DOCUMENT
-
UNKNOWN_TO_SDK_VERSION
public static final AccessCheckResourceType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static AccessCheckResourceType[] 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 (AccessCheckResourceType c : AccessCheckResourceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccessCheckResourceType 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<AccessCheckResourceType>
-
fromValue
public static AccessCheckResourceType 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:
- AccessCheckResourceType corresponding to the value
-
knownValues
public static Set<AccessCheckResourceType> 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 knownAccessCheckResourceTypes
-
-