Interface CfnResponsePlanPropsMixin.IntegrationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResponsePlanPropsMixin.IntegrationProperty.Jsii$Proxy
- Enclosing class:
CfnResponsePlanPropsMixin
@Stability(Stable)
public static interface CfnResponsePlanPropsMixin.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.cfnpropertymixins.services.ssmincidents.*;
IntegrationProperty integrationProperty = IntegrationProperty.builder()
.pagerDutyConfiguration(PagerDutyConfigurationProperty.builder()
.name("name")
.pagerDutyIncidentConfiguration(PagerDutyIncidentConfigurationProperty.builder()
.serviceId("serviceId")
.build())
.secretId("secretId")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResponsePlanPropsMixin.IntegrationPropertystatic final classAn implementation forCfnResponsePlanPropsMixin.IntegrationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPagerDutyConfiguration
Information about the PagerDuty service where the response plan creates an incident.Returns union: either
IResolvableorCfnResponsePlanPropsMixin.PagerDutyConfigurationProperty- See Also:
-
builder
-