Enum SecurityTokenServiceActions
java.lang.Object
java.lang.Enum<SecurityTokenServiceActions>
com.amazonaws.auth.policy.actions.SecurityTokenServiceActions
- All Implemented Interfaces:
Action
,Serializable
,Comparable<SecurityTokenServiceActions>
,java.lang.constant.Constable
The available AWS access control policy actions for AWS STS.
-
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 AWS STS.Action for the AssumeRole operation.Action for the AssumeRoleWithSAML operation.Action for the AssumeRoleWithWebIdentity operation.Action for the DecodeAuthorizationMessage operation.Action for the GetCallerIdentity operation.Action for the GetFederationToken operation.Action for the GetSessionToken operation. -
Method Summary
Modifier and TypeMethodDescriptionReturns the name of this action.static SecurityTokenServiceActions
Returns the enum constant of this type with the specified name.static SecurityTokenServiceActions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
AllSecurityTokenServiceActions
Represents any action executed on AWS STS. -
AssumeRole
Action for the AssumeRole operation. -
AssumeRoleWithSAML
Action for the AssumeRoleWithSAML operation. -
AssumeRoleWithWebIdentity
Action for the AssumeRoleWithWebIdentity operation. -
DecodeAuthorizationMessage
Action for the DecodeAuthorizationMessage operation. -
GetCallerIdentity
Action for the GetCallerIdentity operation. -
GetFederationToken
Action for the GetFederationToken operation. -
GetSessionToken
Action for the GetSessionToken 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.
-