interface ActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMIncidents.Mixins.CfnResponsePlanPropsMixin.ActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmincidents/mixins#CfnResponsePlanPropsMixin_ActionProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssmincidents.mixins.CfnResponsePlanPropsMixin.ActionProperty |
Python | aws_cdk.mixins_preview.aws_ssmincidents.mixins.CfnResponsePlanPropsMixin.ActionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssmincidents » mixins » CfnResponsePlanPropsMixin » ActionProperty |
The Action property type specifies the configuration to launch.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ssmincidents_mixins } from '@aws-cdk/mixins-preview/aws-ssmincidents';
const actionProperty: ssmincidents_mixins.CfnResponsePlanPropsMixin.ActionProperty = {
ssmAutomation: {
documentName: 'documentName',
documentVersion: 'documentVersion',
dynamicParameters: [{
key: 'key',
value: {
variable: 'variable',
},
}],
parameters: [{
key: 'key',
values: ['values'],
}],
roleArn: 'roleArn',
targetAccount: 'targetAccount',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| ssm | IResolvable | Ssm | Details about the Systems Manager automation document that will be used as a runbook during an incident. |
ssmAutomation?
Type:
IResolvable | Ssm
(optional)
Details about the Systems Manager automation document that will be used as a runbook during an incident.

.NET
Go
Java
Python
TypeScript