interface IntegrationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMIncidents.Mixins.CfnResponsePlanPropsMixin.IntegrationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmincidents/mixins#CfnResponsePlanPropsMixin_IntegrationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssmincidents.mixins.CfnResponsePlanPropsMixin.IntegrationProperty |
Python | aws_cdk.mixins_preview.aws_ssmincidents.mixins.CfnResponsePlanPropsMixin.IntegrationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssmincidents » mixins » CfnResponsePlanPropsMixin » IntegrationProperty |
Information about third-party services integrated into 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 integrationProperty: ssmincidents_mixins.CfnResponsePlanPropsMixin.IntegrationProperty = {
pagerDutyConfiguration: {
name: 'name',
pagerDutyIncidentConfiguration: {
serviceId: 'serviceId',
},
secretId: 'secretId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| pager | IResolvable | Pager | Information about the PagerDuty service where the response plan creates an incident. |
pagerDutyConfiguration?
Type:
IResolvable | Pager
(optional)
Information about the PagerDuty service where the response plan creates an incident.

.NET
Go
Java
Python
TypeScript