interface CfnEmailAddressProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Connect.CfnEmailAddressProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnEmailAddressProps |
![]() | software.amazon.awscdk.services.connect.CfnEmailAddressProps |
![]() | aws_cdk.aws_connect.CfnEmailAddressProps |
![]() | 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
description: 'description',
displayName: 'displayName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
email | string | The email address with the instance, in [^\s@]+@[^\s@]+.[^\s@]+ format. |
instance | string | The Amazon Resource Name (ARN) of the instance. |
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 with the instance, in [^\s@]+@[^\s@]+.[^\s@]+ format.
instanceArn
Type:
string
The Amazon Resource Name (ARN) of the instance.
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.