interface CfnEmailContactMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NotificationsContacts.Mixins.CfnEmailContactMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnotificationscontacts/mixins#CfnEmailContactMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.notificationscontacts.mixins.CfnEmailContactMixinProps |
Python | aws_cdk.mixins_preview.aws_notificationscontacts.mixins.CfnEmailContactMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_notificationscontacts » mixins » 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 { mixins as notificationscontacts_mixins } from '@aws-cdk/mixins-preview/aws-notificationscontacts';
const cfnEmailContactMixinProps: notificationscontacts_mixins.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