interface PagerDutyConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMIncidents.Mixins.CfnResponsePlanPropsMixin.PagerDutyConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmincidents/mixins#CfnResponsePlanPropsMixin_PagerDutyConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssmincidents.mixins.CfnResponsePlanPropsMixin.PagerDutyConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_ssmincidents.mixins.CfnResponsePlanPropsMixin.PagerDutyConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssmincidents » mixins » 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 { mixins as ssmincidents_mixins } from '@aws-cdk/mixins-preview/aws-ssmincidents';
const pagerDutyConfigurationProperty: ssmincidents_mixins.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