Enum DynamoDBv2Actions
- All Implemented Interfaces:
Action
,Serializable
,Comparable<DynamoDBv2Actions>
,java.lang.constant.Constable
The available AWS access control policy actions for DynamoDB.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents any action executed on DynamoDB.Action for the BatchGetItem operation.Action for the BatchWriteItem operation.Action for the CreateTable operation.Action for the DeleteItem operation.Action for the DeleteTable operation.Action for the DescribeLimits operation.Action for the DescribeTable operation.Action for the GetItem operation.Action for the ListTables operation.Action for the PutItem operation.Action for the Query operation.Action for the Scan operation.Action for the UpdateItem operation.Action for the UpdateTable operation. -
Method Summary
Modifier and TypeMethodDescriptionReturns the name of this action.static DynamoDBv2Actions
Returns the enum constant of this type with the specified name.static DynamoDBv2Actions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
AllDynamoDBv2Actions
Represents any action executed on DynamoDB. -
BatchGetItem
Action for the BatchGetItem operation. -
BatchWriteItem
Action for the BatchWriteItem operation. -
CreateTable
Action for the CreateTable operation. -
DeleteItem
Action for the DeleteItem operation. -
DeleteTable
Action for the DeleteTable operation. -
DescribeLimits
Action for the DescribeLimits operation. -
DescribeTable
Action for the DescribeTable operation. -
GetItem
Action for the GetItem operation. -
ListTables
Action for the ListTables operation. -
PutItem
Action for the PutItem operation. -
Query
Action for the Query operation. -
Scan
Action for the Scan operation. -
UpdateItem
Action for the UpdateItem operation. -
UpdateTable
Action for the UpdateTable operation.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getActionName
Description copied from interface:Action
Returns the name of this action. For example, 'sqs:SendMessage' is the name corresponding to the SQS action that enables users to send a message to an SQS queue.- Specified by:
getActionName
in interfaceAction
- Returns:
- The name of this action.
-