Interface CfnResponsePlan.IncidentTemplateProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnResponsePlan.IncidentTemplateProperty.Jsii$Proxy
Enclosing class:
CfnResponsePlan

@Stability(Stable) public static interface CfnResponsePlan.IncidentTemplateProperty extends software.amazon.jsii.JsiiSerializable
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 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();
 

See Also: