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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResponsePlan.IntegrationPropertystatic final classAn implementation forCfnResponsePlan.IntegrationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Information about the PagerDuty service where the response plan creates an incident.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
IResolvableorCfnResponsePlan.PagerDutyConfigurationProperty- See Also:
-
builder
-