interface PagerDutyConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSMIncidents.CfnResponsePlanPropsMixin.PagerDutyConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssmincidents#CfnResponsePlanPropsMixin_PagerDutyConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssmincidents.CfnResponsePlanPropsMixin.PagerDutyConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ssmincidents.CfnResponsePlanPropsMixin.PagerDutyConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssmincidents » CfnResponsePlanPropsMixin » PagerDutyConfigurationProperty |
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 { aws_ssmincidents as ssmincidents } from '@aws-cdk/cfn-property-mixins';
const pagerDutyConfigurationProperty: ssmincidents.CfnResponsePlanPropsMixin.PagerDutyConfigurationProperty = {
name: 'name',
pagerDutyIncidentConfiguration: {
serviceId: 'serviceId',
},
secretId: 'secretId',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the PagerDuty configuration. |
| pager | IResolvable | Pager | Details about the PagerDuty service associated with the configuration. |
| secret | string | 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. |
name?
Type:
string
(optional)
The name of the PagerDuty configuration.
pagerDutyIncidentConfiguration?
Type:
IResolvable | Pager
(optional)
Details about the PagerDuty service associated with the configuration.
secretId?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript