interface DefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Budgets.Mixins.CfnBudgetsActionPropsMixin.DefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbudgets/mixins#CfnBudgetsActionPropsMixin_DefinitionProperty |
Java | software.amazon.awscdk.mixins.preview.services.budgets.mixins.CfnBudgetsActionPropsMixin.DefinitionProperty |
Python | aws_cdk.mixins_preview.aws_budgets.mixins.CfnBudgetsActionPropsMixin.DefinitionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_budgets » mixins » CfnBudgetsActionPropsMixin » DefinitionProperty |
The definition is where you specify all of the type-specific parameters.
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 definitionProperty: budgets_mixins.CfnBudgetsActionPropsMixin.DefinitionProperty = {
iamActionDefinition: {
groups: ['groups'],
policyArn: 'policyArn',
roles: ['roles'],
users: ['users'],
},
scpActionDefinition: {
policyId: 'policyId',
targetIds: ['targetIds'],
},
ssmActionDefinition: {
instanceIds: ['instanceIds'],
region: 'region',
subtype: 'subtype',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| iam | IResolvable | Iam | The AWS Identity and Access Management ( IAM ) action definition details. |
| scp | IResolvable | Scp | The service control policies (SCP) action definition details. |
| ssm | IResolvable | Ssm | The Amazon EC2 Systems Manager ( SSM ) action definition details. |
iamActionDefinition?
Type:
IResolvable | Iam
(optional)
The AWS Identity and Access Management ( IAM ) action definition details.
scpActionDefinition?
Type:
IResolvable | Scp
(optional)
The service control policies (SCP) action definition details.
ssmActionDefinition?
Type:
IResolvable | Ssm
(optional)
The Amazon EC2 Systems Manager ( SSM ) action definition details.

.NET
Go
Java
Python
TypeScript