Interface CfnBudgetsAction.IamActionDefinitionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBudgetsAction.IamActionDefinitionProperty.Jsii$Proxy
Enclosing class:
CfnBudgetsAction

@Stability(Stable) public static interface CfnBudgetsAction.IamActionDefinitionProperty extends software.amazon.jsii.JsiiSerializable
The AWS Identity and Access Management ( IAM ) action definition details.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.budgets.*;
 IamActionDefinitionProperty iamActionDefinitionProperty = IamActionDefinitionProperty.builder()
         .policyArn("policyArn")
         // the properties below are optional
         .groups(List.of("groups"))
         .roles(List.of("roles"))
         .users(List.of("users"))
         .build();
 

See Also: