Interface CfnResponsePlan.PagerDutyConfigurationProperty

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

@Stability(Stable) public static interface CfnResponsePlan.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.services.ssmincidents.*;
 PagerDutyConfigurationProperty pagerDutyConfigurationProperty = PagerDutyConfigurationProperty.builder()
         .name("name")
         .pagerDutyIncidentConfiguration(PagerDutyIncidentConfigurationProperty.builder()
                 .serviceId("serviceId")
                 .build())
         .secretId("secretId")
         .build();
 

See Also: