interface CfnPlanMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMContacts.Mixins.CfnPlanMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmcontacts/mixins#CfnPlanMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ssmcontacts.mixins.CfnPlanMixinProps |
Python | aws_cdk.mixins_preview.aws_ssmcontacts.mixins.CfnPlanMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ssmcontacts » mixins » 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 { mixins as ssmcontacts_mixins } from '@aws-cdk/mixins-preview/aws-ssmcontacts';
const cfnPlanMixinProps: ssmcontacts_mixins.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