Show / Hide Table of Contents

Class CfnPool.TwoWayProperty

The pool's two-way SMS configuration object.

Inheritance
object
CfnPool.TwoWayProperty
Implements
CfnPool.ITwoWayProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SMSVOICE
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPool.TwoWayProperty : CfnPool.ITwoWayProperty
Syntax (vb)
Public Class CfnPool.TwoWayProperty Implements CfnPool.ITwoWayProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-pool-twoway.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.SMSVOICE;

             var twoWayProperty = new TwoWayProperty {
                 Enabled = false,

                 // the properties below are optional
                 ChannelArn = "channelArn",
                 ChannelRole = "channelRole"
             };

Synopsis

Constructors

TwoWayProperty()

The pool's two-way SMS configuration object.

Properties

ChannelArn

The Amazon Resource Name (ARN) of the two way channel.

ChannelRole

An optional IAM Role Arn for a service to assume, to be able to post inbound SMS messages.

Enabled

By default this is set to false.

Constructors

TwoWayProperty()

The pool's two-way SMS configuration object.

public TwoWayProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-pool-twoway.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.SMSVOICE;

             var twoWayProperty = new TwoWayProperty {
                 Enabled = false,

                 // the properties below are optional
                 ChannelArn = "channelArn",
                 ChannelRole = "channelRole"
             };

Properties

ChannelArn

The Amazon Resource Name (ARN) of the two way channel.

public string? ChannelArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-pool-twoway.html#cfn-smsvoice-pool-twoway-channelarn

ChannelRole

An optional IAM Role Arn for a service to assume, to be able to post inbound SMS messages.

public string? ChannelRole { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-pool-twoway.html#cfn-smsvoice-pool-twoway-channelrole

Enabled

By default this is set to false.

public object Enabled { get; set; }
Property Value

object

Remarks

When set to true you can receive incoming text messages from your end recipients using the TwoWayChannelArn.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-pool-twoway.html#cfn-smsvoice-pool-twoway-enabled

Type union: either bool or IResolvable

Implements

CfnPool.ITwoWayProperty
Back to top Generated by DocFX