Interface CfnAssociation.PagerDutyConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAssociation.PagerDutyConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAssociation
@Stability(Stable)
public static interface CfnAssociation.PagerDutyConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
PagerDuty integration configuration.
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.devopsagent.*;
PagerDutyConfigurationProperty pagerDutyConfigurationProperty = PagerDutyConfigurationProperty.builder()
.customerEmail("customerEmail")
.services(List.of("services"))
// the properties below are optional
.enableWebhookUpdates(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAssociation.PagerDutyConfigurationPropertystatic final classAn implementation forCfnAssociation.PagerDutyConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCustomerEmail
Email to be used in PagerDuty API header.- See Also:
-
getServices
List of PagerDuty service IDs available for the association.- See Also:
-
getEnableWebhookUpdates
When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service.Returns union: either
BooleanorIResolvable- See Also:
-
builder
-