Enum SimpleDBActions
- All Implemented Interfaces:
Action
,Serializable
,Comparable<SimpleDBActions>
,java.lang.constant.Constable
The available AWS access control policy actions for Amazon SimpleDB.
-
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 Amazon SimpleDB.Action for the BatchDeleteAttributes operation.Action for the BatchPutAttributes operation.Action for the CreateDomain operation.Action for the DeleteAttributes operation.Action for the DeleteDomain operation.Action for the DomainMetadata operation.Action for the GetAttributes operation.Action for the ListDomains operation.Action for the PutAttributes operation.Action for the Select operation. -
Method Summary
Modifier and TypeMethodDescriptionReturns the name of this action.static SimpleDBActions
Returns the enum constant of this type with the specified name.static SimpleDBActions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
AllSimpleDBActions
Represents any action executed on Amazon SimpleDB. -
BatchDeleteAttributes
Action for the BatchDeleteAttributes operation. -
BatchPutAttributes
Action for the BatchPutAttributes operation. -
CreateDomain
Action for the CreateDomain operation. -
DeleteAttributes
Action for the DeleteAttributes operation. -
DeleteDomain
Action for the DeleteDomain operation. -
DomainMetadata
Action for the DomainMetadata operation. -
GetAttributes
Action for the GetAttributes operation. -
ListDomains
Action for the ListDomains operation. -
PutAttributes
Action for the PutAttributes operation. -
Select
Action for the Select 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.
-