CfnEmailAddressMixinProps
- class aws_cdk.mixins_preview.aws_connect.mixins.CfnEmailAddressMixinProps(*, alias_configurations=None, description=None, display_name=None, email_address=None, instance_arn=None, tags=None)
Bases:
objectProperties for CfnEmailAddressPropsMixin.
- Parameters:
alias_configurations (
Union[IResolvable,Sequence[Union[IResolvable,AliasConfigurationProperty,Dict[str,Any]]],None]) – 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 (
Optional[str]) – The description of the email address.display_name (
Optional[str]) – The display name of email address.email_address (
Optional[str]) – The email address, including the domain.instance_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the instance.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource.
- 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.mixins_preview.aws_connect import mixins as connect_mixins cfn_email_address_mixin_props = connect_mixins.CfnEmailAddressMixinProps( alias_configurations=[connect_mixins.CfnEmailAddressPropsMixin.AliasConfigurationProperty( email_address_arn="emailAddressArn" )], description="description", display_name="displayName", email_address="emailAddress", instance_arn="instanceArn", tags=[CfnTag( key="key", value="value" )] )
Attributes
- alias_configurations
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
The description of the email address.
- display_name
The display name of email address.
- email_address
The email address, including the domain.
- instance_arn
The Amazon Resource Name (ARN) of the instance.
- tags
An array of key-value pairs to apply to this resource.