Interface CfnResponsePlanPropsMixin.PagerDutyConfigurationProperty

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

@Stability(Stable) public static interface CfnResponsePlanPropsMixin.PagerDutyConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Details about the PagerDuty configuration for a 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.*;
 PagerDutyConfigurationProperty pagerDutyConfigurationProperty = PagerDutyConfigurationProperty.builder()
         .name("name")
         .pagerDutyIncidentConfiguration(PagerDutyIncidentConfigurationProperty.builder()
                 .serviceId("serviceId")
                 .build())
         .secretId("secretId")
         .build();
 

See Also: