Class CfnPhoneNumberMixinProps
Properties for CfnPhoneNumberPropsMixin.
Implements
Inherited Members
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 |
| 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
Remarks
Description
The description of the phone number.
public string? Description { get; set; }
Property Value
Remarks
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
Remarks
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
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.
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"} }.
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
Remarks
Type
The type of phone number.
public string? Type { get; set; }