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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBudgetsAction.IamActionDefinitionProperty
static final class
An implementation forCfnBudgetsAction.IamActionDefinitionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPolicyArn
The Amazon Resource Name (ARN) of the policy to be attached. -
getGroups
A list of groups to be attached.There must be at least one group.
-
getRoles
A list of roles to be attached.There must be at least one role.
-
getUsers
A list of users to be attached.There must be at least one user.
-
builder
-