aws-cdk-lib.aws_ssmincidents.CfnResponsePlan.ActionProperty

interface ActionProperty

LanguageType name
.NETAmazon.CDK.AWS.SSMIncidents.CfnResponsePlan.ActionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsssmincidents#CfnResponsePlan_ActionProperty
Javasoftware.amazon.awscdk.services.ssmincidents.CfnResponsePlan.ActionProperty
Pythonaws_cdk.aws_ssmincidents.CfnResponsePlan.ActionProperty
TypeScript aws-cdk-lib » aws_ssmincidents » CfnResponsePlan » 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-lib';
const actionProperty: ssmincidents.CfnResponsePlan.ActionProperty = {
  ssmAutomation: {
    documentName: 'documentName',
    roleArn: 'roleArn',

    // the properties below are optional
    documentVersion: 'documentVersion',
    dynamicParameters: [{
      key: 'key',
      value: {
        variable: 'variable',
      },
    }],
    parameters: [{
      key: 'key',
      values: ['values'],
    }],
    targetAccount: 'targetAccount',
  },
};

Properties

NameTypeDescription
ssmAutomation?IResolvable | SsmAutomationPropertyDetails about the Systems Manager automation document that will be used as a runbook during an incident.

ssmAutomation?

Type: IResolvable | SsmAutomationProperty (optional)

Details about the Systems Manager automation document that will be used as a runbook during an incident.