Interface IamAction

All Superinterfaces:
IamValue
All Known Implementing Classes:
DefaultIamAction

@ThreadSafe public interface IamAction extends IamValue
The Action element of a IamStatement, specifying which service actions the statement applies to.
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final IamAction
    An IamAction representing ALL actions.
  • Method Summary

    Static Methods
    Modifier and Type
    Method
    Description
    static IamAction
    create(String value)
    Create a new IamAction element with the provided IamValue.value().

    Methods inherited from interface software.amazon.awssdk.policybuilder.iam.IamValue

    value
  • Field Details

    • ALL

      static final IamAction ALL
      An IamAction representing ALL actions. When used on a statement, it means the policy should apply to every action.
  • Method Details