Show / Hide Table of Contents

Class CfnEmailAddressMixinProps

Properties for CfnEmailAddressPropsMixin.

Inheritance
object
CfnEmailAddressMixinProps
Implements
ICfnEmailAddressMixinProps
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 CfnEmailAddressMixinProps : ICfnEmailAddressMixinProps
Syntax (vb)
Public Class CfnEmailAddressMixinProps Implements ICfnEmailAddressMixinProps
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.CfnPropertyMixins.AWS.Connect;

             var cfnEmailAddressMixinProps = new CfnEmailAddressMixinProps {
                 AliasConfigurations = new [] { new AliasConfigurationProperty {
                     EmailAddressArn = "emailAddressArn"
                 } },
                 Description = "description",
                 DisplayName = "displayName",
                 EmailAddress = "emailAddress",
                 InstanceArn = "instanceArn",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnEmailAddressMixinProps()

Properties for CfnEmailAddressPropsMixin.

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.

Constructors

CfnEmailAddressMixinProps()

Properties for CfnEmailAddressPropsMixin.

public CfnEmailAddressMixinProps()
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.CfnPropertyMixins.AWS.Connect;

             var cfnEmailAddressMixinProps = new CfnEmailAddressMixinProps {
                 AliasConfigurations = new [] { new AliasConfigurationProperty {
                     EmailAddressArn = "emailAddressArn"
                 } },
                 Description = "description",
                 DisplayName = "displayName",
                 EmailAddress = "emailAddress",
                 InstanceArn = "instanceArn",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

AliasConfigurations

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

public object? AliasConfigurations { get; set; }
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 CfnEmailAddressPropsMixin.IAliasConfigurationProperty)[]

Description

The description of the email address.

public string? Description { get; set; }
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.

public string? DisplayName { get; set; }
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.

public string? EmailAddress { get; set; }
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.

public string? InstanceArn { get; set; }
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.

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

ICfnTag[]

Remarks

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

Implements

ICfnEmailAddressMixinProps
Back to top Generated by DocFX