interface CfnPlanMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSMContacts.CfnPlanMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssmcontacts#CfnPlanMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssmcontacts.CfnPlanMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ssmcontacts.CfnPlanMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssmcontacts » CfnPlanMixinProps |
Properties for CfnPlanPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmcontacts-plan.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ssmcontacts as ssmcontacts } from '@aws-cdk/cfn-property-mixins';
const cfnPlanMixinProps: ssmcontacts.CfnPlanMixinProps = {
contactId: 'contactId',
rotationIds: ['rotationIds'],
stages: [{
durationInMinutes: 123,
targets: [{
channelTargetInfo: {
channelId: 'channelId',
retryIntervalInMinutes: 123,
},
contactTargetInfo: {
contactId: 'contactId',
isEssential: false,
},
}],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| contact | string | The Amazon Resource Name (ARN) of the contact. |
| rotation | string[] | The Amazon Resource Names (ARNs) of the on-call rotations associated with the plan. |
| stages? | IResolvable | (IResolvable | Stage)[] | A list of stages that the escalation plan or engagement plan uses to engage contacts and contact methods. |
contactId?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the contact.
rotationIds?
Type:
string[]
(optional)
The Amazon Resource Names (ARNs) of the on-call rotations associated with the plan.
stages?
Type:
IResolvable | (IResolvable | Stage)[]
(optional)
A list of stages that the escalation plan or engagement plan uses to engage contacts and contact methods.

.NET
Go
Java
Python
TypeScript