interface IncidentTemplateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMIncidents.Mixins.CfnResponsePlanPropsMixin.IncidentTemplateProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmincidents/mixins#CfnResponsePlanPropsMixin_IncidentTemplateProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssmincidents.mixins.CfnResponsePlanPropsMixin.IncidentTemplateProperty |
Python | aws_cdk.mixins_preview.aws_ssmincidents.mixins.CfnResponsePlanPropsMixin.IncidentTemplateProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssmincidents » mixins » CfnResponsePlanPropsMixin » IncidentTemplateProperty |
The IncidentTemplate property type specifies details used to create an incident when using this response plan.
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 incidentTemplateProperty: ssmincidents_mixins.CfnResponsePlanPropsMixin.IncidentTemplateProperty = {
dedupeString: 'dedupeString',
impact: 123,
incidentTags: [{
key: 'key',
value: 'value',
}],
notificationTargets: [{
snsTopicArn: 'snsTopicArn',
}],
summary: 'summary',
title: 'title',
};
Properties
| Name | Type | Description |
|---|---|---|
| dedupe | string | Used to create only one incident record for an incident. |
| impact? | number | Defines the impact to the customers. Providing an impact overwrites the impact provided by a response plan. |
| incident | IResolvable | (IResolvable | Cfn)[] | Tags to assign to the template. |
| notification | IResolvable | (IResolvable | Notification)[] | The Amazon Simple Notification Service ( Amazon ) targets that uses to notify the chat channel of updates to an incident. |
| summary? | string | The summary describes what has happened during the incident. |
| title? | string | The title of the incident is a brief and easily recognizable. |
dedupeString?
Type:
string
(optional)
Used to create only one incident record for an incident.
impact?
Type:
number
(optional)
Defines the impact to the customers. Providing an impact overwrites the impact provided by a response plan.
Possible impacts: - 1 - Critical impact, this typically relates to full application failure that impacts many to all customers.
2- High impact, partial application failure with impact to many customers.3- Medium impact, the application is providing reduced service to customers.4- Low impact, customer might aren't impacted by the problem yet.5- No impact, customers aren't currently impacted but urgent action is needed to avoid impact.
incidentTags?
Type:
IResolvable | (IResolvable | Cfn)[]
(optional)
Tags to assign to the template.
When the StartIncident API action is called, Incident Manager assigns the tags specified in the template to the incident.
notificationTargets?
Type:
IResolvable | (IResolvable | Notification)[]
(optional)
The Amazon Simple Notification Service ( Amazon ) targets that uses to notify the chat channel of updates to an incident.
You can also make updates to the incident through the chat channel using the Amazon topics.
summary?
Type:
string
(optional)
The summary describes what has happened during the incident.
title?
Type:
string
(optional)
The title of the incident is a brief and easily recognizable.

.NET
Go
Java
Python
TypeScript