interface CfnEmailAddressMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnEmailAddressMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnEmailAddressMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnEmailAddressMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnEmailAddressMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnEmailAddressMixinProps |
Properties for CfnEmailAddressPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const cfnEmailAddressMixinProps: connect_mixins.CfnEmailAddressMixinProps = {
aliasConfigurations: [{
emailAddressArn: 'emailAddressArn',
}],
description: 'description',
displayName: 'displayName',
emailAddress: 'emailAddress',
instanceArn: 'instanceArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| alias | IResolvable | (IResolvable | Alias)[] | A list of alias configurations for this email address, showing which email addresses forward to this primary address. |
| description? | string | The description of the email address. |
| display | string | The display name of email address. |
| email | string | The email address, including the domain. |
| instance | string | The Amazon Resource Name (ARN) of the instance. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
aliasConfigurations?
Type:
IResolvable | (IResolvable | Alias)[]
(optional)
A list of alias configurations for this email address, showing which email addresses forward to this primary address.
Each configuration contains the email address ID of an alias that forwards emails to this address.
description?
Type:
string
(optional)
The description of the email address.
displayName?
Type:
string
(optional)
The display name of email address.
emailAddress?
Type:
string
(optional)
The email address, including the domain.
instanceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the instance.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript