Class CfnSMSChannelProps
Properties for defining a CfnSMSChannel
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSMSChannelProps : Object, ICfnSMSChannelProps
Syntax (vb)
Public Class CfnSMSChannelProps
Inherits Object
Implements ICfnSMSChannelProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-smschannel.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Pinpoint;
var cfnSMSChannelProps = new CfnSMSChannelProps {
ApplicationId = "applicationId",
// the properties below are optional
Enabled = false,
SenderId = "senderId",
ShortCode = "shortCode"
};
Synopsis
Constructors
CfnSMSChannelProps() |
Properties
ApplicationId | The unique identifier for the Amazon Pinpoint application that the SMS channel applies to. |
Enabled | Specifies whether to enable the SMS channel for the application. |
SenderId | The identity that you want to display on recipients' devices when they receive messages from the SMS channel. |
ShortCode | The registered short code that you want to use when you send messages through the SMS channel. |
Constructors
CfnSMSChannelProps()
public CfnSMSChannelProps()
Properties
ApplicationId
The unique identifier for the Amazon Pinpoint application that the SMS channel applies to.
public string ApplicationId { get; set; }
Property Value
System.String
Remarks
Enabled
Specifies whether to enable the SMS channel for the application.
public object Enabled { get; set; }
Property Value
System.Object
Remarks
SenderId
The identity that you want to display on recipients' devices when they receive messages from the SMS channel.
public string SenderId { get; set; }
Property Value
System.String
Remarks
SenderIDs are only supported in certain countries and regions. For more information, see Supported Countries and Regions in the Amazon Pinpoint User Guide .
ShortCode
The registered short code that you want to use when you send messages through the SMS channel.
public string ShortCode { get; set; }
Property Value
System.String
Remarks
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 .