interface IamActionDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Budgets.Mixins.CfnBudgetsActionPropsMixin.IamActionDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbudgets/mixins#CfnBudgetsActionPropsMixin_IamActionDefinitionProperty |
Java | software.amazon.awscdk.mixins.preview.services.budgets.mixins.CfnBudgetsActionPropsMixin.IamActionDefinitionProperty |
Python | aws_cdk.mixins_preview.aws_budgets.mixins.CfnBudgetsActionPropsMixin.IamActionDefinitionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_budgets » mixins » CfnBudgetsActionPropsMixin » IamActionDefinitionProperty |
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 { mixins as budgets_mixins } from '@aws-cdk/mixins-preview/aws-budgets';
const iamActionDefinitionProperty: budgets_mixins.CfnBudgetsActionPropsMixin.IamActionDefinitionProperty = {
groups: ['groups'],
policyArn: 'policyArn',
roles: ['roles'],
users: ['users'],
};
Properties
| Name | Type | Description |
|---|---|---|
| groups? | string[] | A list of groups to be attached. |
| policy | string | The Amazon Resource Name (ARN) of the policy to be attached. |
| roles? | string[] | A list of roles to be attached. |
| users? | string[] | A list of users to be attached. |
groups?
Type:
string[]
(optional)
A list of groups to be attached.
There must be at least one group.
policyArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the policy to be attached.
roles?
Type:
string[]
(optional)
A list of roles to be attached.
There must be at least one role.
users?
Type:
string[]
(optional)
A list of users to be attached.
There must be at least one user.

.NET
Go
Java
Python
TypeScript