@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:19.355Z") @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()
`AWS::SSMContacts::Contact.Alias`.
|
String |
getDisplayName()
`AWS::SSMContacts::Contact.DisplayName`.
|
Object |
getPlan()
`AWS::SSMContacts::Contact.Plan`.
|
String |
getType()
`AWS::SSMContacts::Contact.Type`.
|
@Stability(value=Stable) @NotNull String getAlias()
@Stability(value=Stable) @NotNull String getDisplayName()
@Stability(value=Stable) @NotNull Object getPlan()
@Stability(value=Stable) @NotNull String getType()
@Stability(value=Stable) static CfnContactProps.Builder builder()
CfnContactProps.Builder of CfnContactPropsCopyright © 2021. All rights reserved.