CfnEmailAddressProps
- class aws_cdk.aws_connect.CfnEmailAddressProps(*, email_address, instance_arn, description=None, display_name=None, tags=None)
Bases:
object
Properties for defining a
CfnEmailAddress
.- Parameters:
email_address (
str
) – The email address with the instance, in [^s@]+@[^s@]+.[^s@]+ format.instance_arn (
str
) – The Amazon Resource Name (ARN) of the instance.description (
Optional
[str
]) – The description of the email address.display_name (
Optional
[str
]) – The display name of email address.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – One or more tags.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_connect as connect cfn_email_address_props = connect.CfnEmailAddressProps( email_address="emailAddress", instance_arn="instanceArn", # the properties below are optional description="description", display_name="displayName", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
The description of the email address.
- display_name
The display name of email address.
- email_address
The email address with the instance, in [^s@]+@[^s@]+.[^s@]+ format.
- instance_arn
The Amazon Resource Name (ARN) of the instance.