Interface CfnResponsePlanPropsMixin.IncidentTemplateProperty

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

@Stability(Stable) public static interface CfnResponsePlanPropsMixin.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.cfnpropertymixins.services.ssmincidents.*;
 IncidentTemplateProperty incidentTemplateProperty = IncidentTemplateProperty.builder()
         .dedupeString("dedupeString")
         .impact(123)
         .incidentTags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .notificationTargets(List.of(NotificationTargetItemProperty.builder()
                 .snsTopicArn("snsTopicArn")
                 .build()))
         .summary("summary")
         .title("title")
         .build();
 

See Also: