@Stability(value=Stable)
public static interface CfnResponsePlan.IncidentTemplateProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ssmincidents.*;
IncidentTemplateProperty incidentTemplateProperty = IncidentTemplateProperty.builder()
.impact(123)
.title("title")
// the properties below are optional
.dedupeString("dedupeString")
.incidentTags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.notificationTargets(List.of(NotificationTargetItemProperty.builder()
.snsTopicArn("snsTopicArn")
.build()))
.summary("summary")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnResponsePlan.IncidentTemplateProperty.Builder
A builder for
CfnResponsePlan.IncidentTemplateProperty |
static class |
CfnResponsePlan.IncidentTemplateProperty.Jsii$Proxy
An implementation for
CfnResponsePlan.IncidentTemplateProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnResponsePlan.IncidentTemplateProperty.Builder |
builder() |
default String |
getDedupeString()
Used to create only one incident record for an incident.
|
Number |
getImpact()
Defines the impact to the customers.
|
default Object |
getIncidentTags()
`CfnResponsePlan.IncidentTemplateProperty.IncidentTags`.
|
default Object |
getNotificationTargets()
The SNS targets that AWS Chatbot uses to notify the chat channel of updates to an incident.
|
default String |
getSummary()
The summary describes what has happened during the incident.
|
String |
getTitle()
The title of the incident is a brief and easily recognizable.
|
@Stability(value=Stable) @NotNull Number getImpact()
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.@Stability(value=Stable) @NotNull String getTitle()
@Stability(value=Stable) @Nullable default String getDedupeString()
@Stability(value=Stable) @Nullable default Object getIncidentTags()
@Stability(value=Stable) @Nullable default Object getNotificationTargets()
You can also make updates to the incident through the chat channel using the SNS topics.
@Stability(value=Stable) @Nullable default String getSummary()
@Stability(value=Stable) static CfnResponsePlan.IncidentTemplateProperty.Builder builder()
Copyright © 2022. All rights reserved.