interface PagerDutyConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnAssociation.PagerDutyConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnAssociation_PagerDutyConfigurationProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnAssociation.PagerDutyConfigurationProperty |
Python | aws_cdk.aws_devopsagent.CfnAssociation.PagerDutyConfigurationProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnAssociation » PagerDutyConfigurationProperty |
PagerDuty integration configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsagent as devopsagent } from 'aws-cdk-lib';
const pagerDutyConfigurationProperty: devopsagent.CfnAssociation.PagerDutyConfigurationProperty = {
customerEmail: 'customerEmail',
services: ['services'],
// the properties below are optional
enableWebhookUpdates: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| customer | string | Email to be used in PagerDuty API header. |
| services | string[] | List of PagerDuty service IDs available for the association. |
| enable | boolean | IResolvable | When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service. |
customerEmail
Type:
string
Email to be used in PagerDuty API header.
services
Type:
string[]
List of PagerDuty service IDs available for the association.
enableWebhookUpdates?
Type:
boolean | IResolvable
(optional)
When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service.

.NET
Go
Java
Python
TypeScript