Interface CfnResponsePlan.IntegrationProperty

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

@Stability(Stable) public static interface CfnResponsePlan.IntegrationProperty extends software.amazon.jsii.JsiiSerializable
Information about third-party services integrated into 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.*;
 IntegrationProperty integrationProperty = IntegrationProperty.builder()
         .pagerDutyConfiguration(PagerDutyConfigurationProperty.builder()
                 .name("name")
                 .pagerDutyIncidentConfiguration(PagerDutyIncidentConfigurationProperty.builder()
                         .serviceId("serviceId")
                         .build())
                 .secretId("secretId")
                 .build())
         .build();