CfnEmailContactMixinProps
- class aws_cdk.mixins_preview.aws_notificationscontacts.mixins.CfnEmailContactMixinProps(*, email_address=None, name=None, tags=None)
Bases:
objectProperties 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:
- 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.
- name
The name of the contact.
- tags
A list of tags to apply to the email contact.