interface CfnEmailContactProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_notificationscontacts.CfnEmailContactProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsnotificationscontacts#CfnEmailContactProps |
Java | software.amazon.awscdk.services.notificationscontacts.CfnEmailContactProps |
Python | aws_cdk.aws_notificationscontacts.CfnEmailContactProps |
TypeScript | aws-cdk-lib » aws_notificationscontacts » CfnEmailContactProps |
Properties for defining a CfnEmailContact.
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-lib';
const cfnEmailContactProps: notificationscontacts.CfnEmailContactProps = {
emailAddress: 'emailAddress',
name: 'name',
// the properties below are optional
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
The email address of the contact.
The activation and notification emails are sent here.
name
Type:
string
The name of the contact.
tags?
Type:
Cfn[]
(optional)
A list of tags to apply to the email contact.

.NET
Go
Java
Python
TypeScript