interface ActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSMIncidents.CfnResponsePlanPropsMixin.ActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssmincidents#CfnResponsePlanPropsMixin_ActionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssmincidents.CfnResponsePlanPropsMixin.ActionProperty |
Python | aws_cdk.cfn_property_mixins.aws_ssmincidents.CfnResponsePlanPropsMixin.ActionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssmincidents » 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 { aws_ssmincidents as ssmincidents } from '@aws-cdk/cfn-property-mixins';
const actionProperty: ssmincidents.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