interface IntegrationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSMIncidents.CfnResponsePlanPropsMixin.IntegrationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssmincidents#CfnResponsePlanPropsMixin_IntegrationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssmincidents.CfnResponsePlanPropsMixin.IntegrationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ssmincidents.CfnResponsePlanPropsMixin.IntegrationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssmincidents » 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 { aws_ssmincidents as ssmincidents } from '@aws-cdk/cfn-property-mixins';
const integrationProperty: ssmincidents.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