Interface CfnContactChannelProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnContactChannelProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:35.819Z")
@Stability(Stable)
public interface CfnContactChannelProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnContactChannel
.
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.*; CfnContactChannelProps cfnContactChannelProps = CfnContactChannelProps.builder() .channelAddress("channelAddress") .channelName("channelName") .channelType("channelType") .contactId("contactId") // the properties below are optional .deferActivation(false) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnContactChannelProps
static final class
An implementation forCfnContactChannelProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The details that Incident Manager uses when trying to engage the contact channel.The name of the contact channel.The type of the contact channel.The Amazon Resource Name (ARN) of the contact you are adding the contact channel to.default Object
If you want to activate the channel at a later time, you can choose to defer activation.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChannelAddress
The details that Incident Manager uses when trying to engage the contact channel. -
getChannelName
The name of the contact channel. -
getChannelType
The type of the contact channel. Incident Manager supports three contact methods:.- SMS
- VOICE
-
getContactId
The Amazon Resource Name (ARN) of the contact you are adding the contact channel to. -
getDeferActivation
If you want to activate the channel at a later time, you can choose to defer activation.Incident Manager can't engage your contact channel until it has been activated.
-
builder
- Returns:
- a
CfnContactChannelProps.Builder
ofCfnContactChannelProps
-