@Stability(value=Stable)
public static interface CfnContact.StageProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ssmcontacts.*;
StageProperty stageProperty = StageProperty.builder()
.durationInMinutes(123)
// the properties below are optional
.targets(List.of(TargetsProperty.builder()
.channelTargetInfo(ChannelTargetInfoProperty.builder()
.channelId("channelId")
.retryIntervalInMinutes(123)
.build())
.contactTargetInfo(ContactTargetInfoProperty.builder()
.contactId("contactId")
.isEssential(false)
.build())
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnContact.StageProperty.Builder
A builder for
CfnContact.StageProperty |
static class |
CfnContact.StageProperty.Jsii$Proxy
An implementation for
CfnContact.StageProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnContact.StageProperty.Builder |
builder() |
Number |
getDurationInMinutes()
The time to wait until beginning the next stage.
|
default Object |
getTargets()
The contacts or contact methods that the escalation plan or engagement plan is engaging.
|
@Stability(value=Stable) @NotNull Number getDurationInMinutes()
The duration can only be set to 0 if a target is specified.
@Stability(value=Stable) @Nullable default Object getTargets()
@Stability(value=Stable) static CfnContact.StageProperty.Builder builder()
CfnContact.StageProperty.Builder of CfnContact.StagePropertyCopyright © 2022. All rights reserved.