Uses of Interface
software.amazon.awssdk.policybuilder.iam.IamAction
-
Packages that use IamAction Package Description software.amazon.awssdk.policybuilder.iam software.amazon.awssdk.policybuilder.iam.internal -
-
Uses of IamAction in software.amazon.awssdk.policybuilder.iam
Fields in software.amazon.awssdk.policybuilder.iam declared as IamAction Modifier and Type Field Description static IamActionIamAction. ALLAnIamActionrepresenting ALL actions.Methods in software.amazon.awssdk.policybuilder.iam that return IamAction Modifier and Type Method Description static IamActionIamAction. create(String value)Create a newIamActionelement with the providedIamValue.value().Methods in software.amazon.awssdk.policybuilder.iam that return types with arguments of type IamAction Modifier and Type Method Description List<IamAction>IamStatement. actions()Retrieve the value set byIamStatement.Builder.actions(Collection).List<IamAction>IamStatement. notActions()Retrieve the value set byIamStatement.Builder.notActions(Collection).Methods in software.amazon.awssdk.policybuilder.iam with parameters of type IamAction Modifier and Type Method Description IamStatement.BuilderIamStatement.Builder. addAction(IamAction action)Append anActionelement to this statement, specifying an action that is allowed or denied.IamStatement.BuilderIamStatement.Builder. addNotAction(IamAction action)Append aNotActionelement to this statement, specifying an action that is denied or allowed.Method parameters in software.amazon.awssdk.policybuilder.iam with type arguments of type IamAction Modifier and Type Method Description IamStatement.BuilderIamStatement.Builder. actions(Collection<IamAction> actions)Configure theActionelement of the statement, specifying the actions that are allowed or denied.IamStatement.BuilderIamStatement.Builder. notActions(Collection<IamAction> actions)Configure theNotActionelement of the statement, specifying actions that are denied or allowed. -
Uses of IamAction in software.amazon.awssdk.policybuilder.iam.internal
Classes in software.amazon.awssdk.policybuilder.iam.internal that implement IamAction Modifier and Type Class Description classDefaultIamActionDefault implementation ofIamAction.Methods in software.amazon.awssdk.policybuilder.iam.internal that return types with arguments of type IamAction Modifier and Type Method Description List<IamAction>DefaultIamStatement. actions()List<IamAction>DefaultIamStatement. notActions()Methods in software.amazon.awssdk.policybuilder.iam.internal with parameters of type IamAction Modifier and Type Method Description IamStatement.BuilderDefaultIamStatement.Builder. addAction(IamAction action)IamStatement.BuilderDefaultIamStatement.Builder. addNotAction(IamAction notAction)Method parameters in software.amazon.awssdk.policybuilder.iam.internal with type arguments of type IamAction Modifier and Type Method Description IamStatement.BuilderDefaultIamStatement.Builder. actions(Collection<IamAction> actions)IamStatement.BuilderDefaultIamStatement.Builder. notActions(Collection<IamAction> notActions)
-