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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnResponsePlan.PagerDutyConfigurationProperty
static final class
An implementation forCfnResponsePlan.PagerDutyConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
getName()
The name of the PagerDuty configuration.Details about the PagerDuty service associated with the configuration.The ID of the AWS Secrets Manager secret that stores your PagerDuty key, either a General Access REST API Key or User Token REST API Key, and other user credentials.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the PagerDuty configuration. -
getPagerDutyIncidentConfiguration
Details about the PagerDuty service associated with the configuration. -
getSecretId
The ID of the AWS Secrets Manager secret that stores your PagerDuty key, either a General Access REST API Key or User Token REST API Key, and other user credentials. -
builder
-