interface StageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSMContacts.CfnPlan.StageProperty |
Java | software.amazon.awscdk.services.ssmcontacts.CfnPlan.StageProperty |
Python | aws_cdk.aws_ssmcontacts.CfnPlan.StageProperty |
TypeScript | @aws-cdk/aws-ssmcontacts » CfnPlan » StageProperty |
A set amount of time that an escalation plan or engagement plan engages the specified contacts or contact methods.
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 stageProperty: ssmcontacts.CfnPlan.StageProperty = {
durationInMinutes: 123,
// the properties below are optional
targets: [{
channelTargetInfo: {
channelId: 'channelId',
retryIntervalInMinutes: 123,
},
contactTargetInfo: {
contactId: 'contactId',
isEssential: false,
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| duration | number | The time to wait until beginning the next stage. |
| targets? | IResolvable | IResolvable | Targets[] | The contacts or contact methods that the escalation plan or engagement plan is engaging. |
durationInMinutes
Type:
number
The time to wait until beginning the next stage.
The duration can only be set to 0 if a target is specified.
targets?
Type:
IResolvable | IResolvable | Targets[]
(optional)
The contacts or contact methods that the escalation plan or engagement plan is engaging.

.NET
Java
Python
TypeScript