interface CfnEmailContactMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.NotificationsContacts.CfnEmailContactMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsnotificationscontacts#CfnEmailContactMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.notificationscontacts.CfnEmailContactMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_notificationscontacts.CfnEmailContactMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_notificationscontacts » CfnEmailContactMixinProps |
Properties for CfnEmailContactPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_notificationscontacts as notificationscontacts } from '@aws-cdk/cfn-property-mixins';
const cfnEmailContactMixinProps: notificationscontacts.CfnEmailContactMixinProps = {
emailAddress: 'emailAddress',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| email | string | The email address of the contact. |
| name? | string | The name of the contact. |
| tags? | Cfn[] | A list of tags to apply to the email contact. |
emailAddress?
Type:
string
(optional)
The email address of the contact.
The activation and notification emails are sent here.
name?
Type:
string
(optional)
The name of the contact.
tags?
Type:
Cfn[]
(optional)
A list of tags to apply to the email contact.

.NET
Go
Java
Python
TypeScript