interface CfnEmailAddressProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnEmailAddressProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnEmailAddressProps |
Java | software.amazon.awscdk.services.connect.CfnEmailAddressProps |
Python | aws_cdk.aws_connect.CfnEmailAddressProps |
TypeScript | aws-cdk-lib » aws_connect » CfnEmailAddressProps |
Properties for defining a CfnEmailAddress.
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 { aws_connect as connect } from 'aws-cdk-lib';
const cfnEmailAddressProps: connect.CfnEmailAddressProps = {
emailAddress: 'emailAddress',
instanceArn: 'instanceArn',
// the properties below are optional
aliasConfigurations: [{
emailAddressArn: 'emailAddressArn',
}],
description: 'description',
displayName: 'displayName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| email | string | The email address, including the domain. |
| instance | string | The Amazon Resource Name (ARN) of the instance. |
| 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. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
emailAddress
Type:
string
The email address, including the domain.
instanceArn
Type:
string
The Amazon Resource Name (ARN) of the instance.
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.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript