interface CfnPlanProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSMContacts.CfnPlanProps |
Java | software.amazon.awscdk.services.ssmcontacts.CfnPlanProps |
Python | aws_cdk.aws_ssmcontacts.CfnPlanProps |
TypeScript | @aws-cdk/aws-ssmcontacts » CfnPlanProps |
Properties for defining a CfnPlan.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ssmcontacts from '@aws-cdk/aws-ssmcontacts';
const cfnPlanProps: ssmcontacts.CfnPlanProps = {
contactId: 'contactId',
// the properties below are optional
rotationIds: ['rotationIds'],
stages: [{
durationInMinutes: 123,
// the properties below are optional
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
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
Java
Python
TypeScript