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

public enum SecurityTokenServiceActions extends Enum<SecurityTokenServiceActions> implements Action
The available AWS access control policy actions for AWS STS.
  • Enum Constant Details

    • AllSecurityTokenServiceActions

      public static final SecurityTokenServiceActions AllSecurityTokenServiceActions
      Represents any action executed on AWS STS.
    • AssumeRole

      public static final SecurityTokenServiceActions AssumeRole
      Action for the AssumeRole operation.
    • AssumeRoleWithSAML

      public static final SecurityTokenServiceActions AssumeRoleWithSAML
      Action for the AssumeRoleWithSAML operation.
    • AssumeRoleWithWebIdentity

      public static final SecurityTokenServiceActions AssumeRoleWithWebIdentity
      Action for the AssumeRoleWithWebIdentity operation.
    • DecodeAuthorizationMessage

      public static final SecurityTokenServiceActions DecodeAuthorizationMessage
      Action for the DecodeAuthorizationMessage operation.
    • GetCallerIdentity

      public static final SecurityTokenServiceActions GetCallerIdentity
      Action for the GetCallerIdentity operation.
    • GetFederationToken

      public static final SecurityTokenServiceActions GetFederationToken
      Action for the GetFederationToken operation.
    • GetSessionToken

      public static final SecurityTokenServiceActions GetSessionToken
      Action for the GetSessionToken operation.
  • Method Details

    • values

      public static SecurityTokenServiceActions[] 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

      public static SecurityTokenServiceActions 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 name
      NullPointerException - if the argument is null
    • getActionName

      public String 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 interface Action
      Returns:
      The name of this action.