aws-cdk-lib.aws_ssmincidents.CfnResponsePlan.IncidentTemplateProperty

interface IncidentTemplateProperty

LanguageType name
.NETAmazon.CDK.AWS.SSMIncidents.CfnResponsePlan.IncidentTemplateProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsssmincidents#CfnResponsePlan_IncidentTemplateProperty
Javasoftware.amazon.awscdk.services.ssmincidents.CfnResponsePlan.IncidentTemplateProperty
Pythonaws_cdk.aws_ssmincidents.CfnResponsePlan.IncidentTemplateProperty
TypeScript aws-cdk-lib » aws_ssmincidents » CfnResponsePlan » 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 { aws_ssmincidents as ssmincidents } from 'aws-cdk-lib';
const incidentTemplateProperty: ssmincidents.CfnResponsePlan.IncidentTemplateProperty = {
  impact: 123,
  title: 'title',

  // the properties below are optional
  dedupeString: 'dedupeString',
  incidentTags: [{
    key: 'key',
    value: 'value',
  }],
  notificationTargets: [{
    snsTopicArn: 'snsTopicArn',
  }],
  summary: 'summary',
};

Properties

NameTypeDescription
impactnumberDefines the impact to the customers. Providing an impact overwrites the impact provided by a response plan.
titlestringThe title of the incident is a brief and easily recognizable.
dedupeString?stringUsed to create only one incident record for an incident.
incidentTags?IResolvable | IResolvable | CfnTag[]Tags to assign to the template.
notificationTargets?IResolvable | IResolvable | NotificationTargetItemProperty[]The SNS targets that AWS Chatbot uses to notify the chat channel of updates to an incident.
summary?stringThe summary describes what has happened during the incident.

impact

Type: number

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.

title

Type: 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.


incidentTags?

Type: IResolvable | IResolvable | CfnTag[] (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 | NotificationTargetItemProperty[] (optional)

The SNS targets that AWS Chatbot 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 SNS topics.


summary?

Type: string (optional)

The summary describes what has happened during the incident.