Interface CfnSMSChannelProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSMSChannelProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:22.886Z")
@Stability(Stable)
public interface CfnSMSChannelProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnSMSChannel
.
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.pinpoint.*; CfnSMSChannelProps cfnSMSChannelProps = CfnSMSChannelProps.builder() .applicationId("applicationId") // the properties below are optional .enabled(false) .senderId("senderId") .shortCode("shortCode") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSMSChannelProps
static final class
An implementation forCfnSMSChannelProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnSMSChannelProps.Builder
builder()
The unique identifier for the Amazon Pinpoint application that the SMS channel applies to.default Object
Specifies whether to enable the SMS channel for the application.default String
The identity that you want to display on recipients' devices when they receive messages from the SMS channel.default String
The registered short code that you want to use when you send messages through the SMS channel.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationId
The unique identifier for the Amazon Pinpoint application that the SMS channel applies to.- See Also:
-
getEnabled
Specifies whether to enable the SMS channel for the application.- See Also:
-
getSenderId
The identity that you want to display on recipients' devices when they receive messages from the SMS channel.SenderIDs are only supported in certain countries and regions. For more information, see Supported Countries and Regions in the Amazon Pinpoint User Guide .
- See Also:
-
getShortCode
The registered short code that you want to use when you send messages through the SMS channel.For information about obtaining a dedicated short code for sending SMS messages, see Requesting Dedicated Short Codes for SMS Messaging with Amazon Pinpoint in the Amazon Pinpoint User Guide .
- See Also:
-
builder
- Returns:
- a
CfnSMSChannelProps.Builder
ofCfnSMSChannelProps
-