interface CfnResponsePlanMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMIncidents.Mixins.CfnResponsePlanMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmincidents/mixins#CfnResponsePlanMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ssmincidents.mixins.CfnResponsePlanMixinProps |
Python | aws_cdk.mixins_preview.aws_ssmincidents.mixins.CfnResponsePlanMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ssmincidents » mixins » CfnResponsePlanMixinProps |
Properties for CfnResponsePlanPropsMixin.
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 cfnResponsePlanMixinProps: ssmincidents_mixins.CfnResponsePlanMixinProps = {
actions: [{
ssmAutomation: {
documentName: 'documentName',
documentVersion: 'documentVersion',
dynamicParameters: [{
key: 'key',
value: {
variable: 'variable',
},
}],
parameters: [{
key: 'key',
values: ['values'],
}],
roleArn: 'roleArn',
targetAccount: 'targetAccount',
},
}],
chatChannel: {
chatbotSns: ['chatbotSns'],
},
displayName: 'displayName',
engagements: ['engagements'],
incidentTemplate: {
dedupeString: 'dedupeString',
impact: 123,
incidentTags: [{
key: 'key',
value: 'value',
}],
notificationTargets: [{
snsTopicArn: 'snsTopicArn',
}],
summary: 'summary',
title: 'title',
},
integrations: [{
pagerDutyConfiguration: {
name: 'name',
pagerDutyIncidentConfiguration: {
serviceId: 'serviceId',
},
secretId: 'secretId',
},
}],
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| actions? | IResolvable | (IResolvable | Action)[] | The actions that the response plan starts at the beginning of an incident. |
| chat | IResolvable | Chat | The chat channel used for collaboration during an incident. |
| display | string | The human readable name of the response plan. |
| engagements? | string[] | The Amazon Resource Name (ARN) for the contacts and escalation plans that the response plan engages during an incident. |
| incident | IResolvable | Incident | Details used to create an incident when using this response plan. |
| integrations? | IResolvable | (IResolvable | Integration)[] | Information about third-party services integrated into the response plan. |
| name? | string | The name of the response plan. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
actions?
Type:
IResolvable | (IResolvable | Action)[]
(optional)
The actions that the response plan starts at the beginning of an incident.
chatChannel?
Type:
IResolvable | Chat
(optional)
The chat channel used for collaboration during an incident.
displayName?
Type:
string
(optional)
The human readable name of the response plan.
engagements?
Type:
string[]
(optional)
The Amazon Resource Name (ARN) for the contacts and escalation plans that the response plan engages during an incident.
incidentTemplate?
Type:
IResolvable | Incident
(optional)
Details used to create an incident when using this response plan.
integrations?
Type:
IResolvable | (IResolvable | Integration)[]
(optional)
Information about third-party services integrated into the response plan.
name?
Type:
string
(optional)
The name of the response plan.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript