interface SsmActionDefinitionProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Budgets.CfnBudgetsAction.SsmActionDefinitionProperty | 
|  Java | software.amazon.awscdk.services.budgets.CfnBudgetsAction.SsmActionDefinitionProperty | 
|  Python | aws_cdk.aws_budgets.CfnBudgetsAction.SsmActionDefinitionProperty | 
|  TypeScript | @aws-cdk/aws-budgets»CfnBudgetsAction»SsmActionDefinitionProperty | 
The Amazon EC2 Systems Manager ( SSM ) action definition details.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as budgets from '@aws-cdk/aws-budgets';
const ssmActionDefinitionProperty: budgets.CfnBudgetsAction.SsmActionDefinitionProperty = {
  instanceIds: ['instanceIds'],
  region: 'region',
  subtype: 'subtype',
};
Properties
| Name | Type | Description | 
|---|---|---|
| instance | string[] | The EC2 and RDS instance IDs. | 
| region | string | The Region to run the ( SSM ) document. | 
| subtype | string | The action subType. | 
instanceIds
Type:
string[]
The EC2 and RDS instance IDs.
region
Type:
string
The Region to run the ( SSM ) document.
subtype
Type:
string
The action subType.
