aws-cdk-lib.aws_ssmincidents.CfnResponsePlan.PagerDutyConfigurationProperty

interface PagerDutyConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.SSMIncidents.CfnResponsePlan.PagerDutyConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsssmincidents#CfnResponsePlan_PagerDutyConfigurationProperty
Javasoftware.amazon.awscdk.services.ssmincidents.CfnResponsePlan.PagerDutyConfigurationProperty
Pythonaws_cdk.aws_ssmincidents.CfnResponsePlan.PagerDutyConfigurationProperty
TypeScript aws-cdk-lib » aws_ssmincidents » CfnResponsePlan » 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-lib';
const pagerDutyConfigurationProperty: ssmincidents.CfnResponsePlan.PagerDutyConfigurationProperty = {
  name: 'name',
  pagerDutyIncidentConfiguration: {
    serviceId: 'serviceId',
  },
  secretId: 'secretId',
};

Properties

NameTypeDescription
namestringThe name of the PagerDuty configuration.
pagerDutyIncidentConfigurationIResolvable | PagerDutyIncidentConfigurationPropertyDetails about the PagerDuty service associated with the configuration.
secretIdstringThe 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

The name of the PagerDuty configuration.


pagerDutyIncidentConfiguration

Type: IResolvable | PagerDutyIncidentConfigurationProperty

Details about the PagerDuty service associated with the configuration.


secretId

Type: 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.