CfnEmailContactMixinProps

class aws_cdk.mixins_preview.aws_notificationscontacts.mixins.CfnEmailContactMixinProps(*, email_address=None, name=None, tags=None)

Bases: object

Properties for CfnEmailContactPropsMixin.

Parameters:
  • email_address (Optional[str]) – The email address of the contact. The activation and notification emails are sent here.

  • name (Optional[str]) – The name of the contact.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – A list of tags to apply to the email contact.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notificationscontacts-emailcontact.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_notificationscontacts import mixins as notificationscontacts_mixins

cfn_email_contact_mixin_props = notificationscontacts_mixins.CfnEmailContactMixinProps(
    email_address="emailAddress",
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

email_address

The email address of the contact.

The activation and notification emails are sent here.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notificationscontacts-emailcontact.html#cfn-notificationscontacts-emailcontact-emailaddress

name

The name of the contact.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notificationscontacts-emailcontact.html#cfn-notificationscontacts-emailcontact-name

tags

A list of tags to apply to the email contact.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notificationscontacts-emailcontact.html#cfn-notificationscontacts-emailcontact-tags