@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.338Z") @Stability(value=Stable) public interface CfnContactProps 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.*;
CfnContactProps cfnContactProps = CfnContactProps.builder()
.alias("alias")
.displayName("displayName")
.plan(List.of(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()))
.type("type")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnContactProps.Builder
A builder for
CfnContactProps |
static class |
CfnContactProps.Jsii$Proxy
An implementation for
CfnContactProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnContactProps.Builder |
builder() |
String |
getAlias()
The unique and identifiable alias of the contact or escalation plan.
|
String |
getDisplayName()
The full name of the contact or escalation plan.
|
Object |
getPlan()
A list of stages.
|
String |
getType()
Refers to the type of contact.
|
@Stability(value=Stable) @NotNull String getAlias()
@Stability(value=Stable) @NotNull String getDisplayName()
@Stability(value=Stable) @NotNull Object getPlan()
A contact has an engagement plan with stages that contact specified contact channels. An escalation plan uses stages that contact specified contacts.
@Stability(value=Stable) @NotNull String getType()
A single contact is type PERSONAL and an escalation plan is type ESCALATION .
@Stability(value=Stable) static CfnContactProps.Builder builder()
CfnContactProps.Builder of CfnContactPropsCopyright © 2022. All rights reserved.