Show / Hide Table of Contents

Class CfnPhoneNumberMixinProps

Properties for CfnPhoneNumberPropsMixin.

Inheritance
object
CfnPhoneNumberMixinProps
Implements
ICfnPhoneNumberMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Connect
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnPhoneNumberMixinProps : ICfnPhoneNumberMixinProps
Syntax (vb)
Public Class CfnPhoneNumberMixinProps Implements ICfnPhoneNumberMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-phonenumber.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.CfnPropertyMixins.AWS.Connect;

             var cfnPhoneNumberMixinProps = new CfnPhoneNumberMixinProps {
                 CountryCode = "countryCode",
                 Description = "description",
                 Prefix = "prefix",
                 SourcePhoneNumberArn = "sourcePhoneNumberArn",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 TargetArn = "targetArn",
                 Type = "type"
             };

Synopsis

Constructors

CfnPhoneNumberMixinProps()

Properties for CfnPhoneNumberPropsMixin.

Properties

CountryCode

The ISO country code.

Description

The description of the phone number.

Prefix

The prefix of the phone number. If provided, it must contain + as part of the country code.

SourcePhoneNumberArn

The claimed phone number ARN that was previously imported from the external service, such as AWS End User Messaging.

Tags

The tags used to organize, track, or control access for this resource.

TargetArn

The Amazon Resource Name (ARN) for Amazon Connect instances or traffic distribution group that phone numbers are claimed to.

Type

The type of phone number.

Constructors

CfnPhoneNumberMixinProps()

Properties for CfnPhoneNumberPropsMixin.

public CfnPhoneNumberMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-phonenumber.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.CfnPropertyMixins.AWS.Connect;

             var cfnPhoneNumberMixinProps = new CfnPhoneNumberMixinProps {
                 CountryCode = "countryCode",
                 Description = "description",
                 Prefix = "prefix",
                 SourcePhoneNumberArn = "sourcePhoneNumberArn",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 TargetArn = "targetArn",
                 Type = "type"
             };

Properties

CountryCode

The ISO country code.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-phonenumber.html#cfn-connect-phonenumber-countrycode

Description

The description of the phone number.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-phonenumber.html#cfn-connect-phonenumber-description

Prefix

The prefix of the phone number. If provided, it must contain + as part of the country code.

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

string

Remarks

Pattern : ^\+[0-9]{1,15}

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-phonenumber.html#cfn-connect-phonenumber-prefix

SourcePhoneNumberArn

The claimed phone number ARN that was previously imported from the external service, such as AWS End User Messaging.

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

string

Remarks

If it is from AWS End User Messaging, it looks like the ARN of the phone number that was imported from AWS End User Messaging.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-phonenumber.html#cfn-connect-phonenumber-sourcephonenumberarn

Tags

The tags used to organize, track, or control access for this resource.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

For example, { "tags": {"key1":"value1", "key2":"value2"} }.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-phonenumber.html#cfn-connect-phonenumber-tags

TargetArn

The Amazon Resource Name (ARN) for Amazon Connect instances or traffic distribution group that phone numbers are claimed to.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-phonenumber.html#cfn-connect-phonenumber-targetarn

Type

The type of phone number.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-phonenumber.html#cfn-connect-phonenumber-type

Implements

ICfnPhoneNumberMixinProps
Back to top Generated by DocFX