Show / Hide Table of Contents

Interface ICfnEmailAddressProps

Properties for defining a CfnEmailAddress.

Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnEmailAddressProps
Syntax (vb)
Public Interface ICfnEmailAddressProps
Remarks

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

             var cfnEmailAddressProps = new CfnEmailAddressProps {
                 EmailAddress = "emailAddress",
                 InstanceArn = "instanceArn",

                 // the properties below are optional
                 AliasConfigurations = new [] { new AliasConfigurationProperty {
                     EmailAddressArn = "emailAddressArn"
                 } },
                 Description = "description",
                 DisplayName = "displayName",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

AliasConfigurations

A list of alias configurations for this email address, showing which email addresses forward to this primary address.

Description

The description of the email address.

DisplayName

The display name of email address.

EmailAddress

The email address, including the domain.

InstanceArn

The Amazon Resource Name (ARN) of the instance.

Tags

An array of key-value pairs to apply to this resource.

Properties

AliasConfigurations

A list of alias configurations for this email address, showing which email addresses forward to this primary address.

object? AliasConfigurations { get; }
Property Value

object

Remarks

Each configuration contains the email address ID of an alias that forwards emails to this address.

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

Type union: either IResolvable or (either IResolvable or CfnEmailAddress.IAliasConfigurationProperty)[]

Description

The description of the email address.

string? Description { get; }
Property Value

string

Remarks

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

DisplayName

The display name of email address.

string? DisplayName { get; }
Property Value

string

Remarks

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

EmailAddress

The email address, including the domain.

string EmailAddress { get; }
Property Value

string

Remarks

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

InstanceArn

The Amazon Resource Name (ARN) of the instance.

string InstanceArn { get; }
Property Value

string

Remarks

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

Tags

An array of key-value pairs to apply to this resource.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

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

Back to top Generated by DocFX