interface EmailContactProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.NotificationsContacts.CfnEmailContact.EmailContactProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsnotificationscontacts#CfnEmailContact_EmailContactProperty |
Java | software.amazon.awscdk.services.notificationscontacts.CfnEmailContact.EmailContactProperty |
Python | aws_cdk.aws_notificationscontacts.CfnEmailContact.EmailContactProperty |
TypeScript | aws-cdk-lib » aws_notificationscontacts » CfnEmailContact » EmailContactProperty |
Configures email contacts for AWS User Notifications .
You must activate the email contact using the activation token that you will receive when the email contact is set up.
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 emailContactProperty: notificationscontacts.CfnEmailContact.EmailContactProperty = {
address: 'address',
arn: 'arn',
creationTime: 'creationTime',
name: 'name',
status: 'status',
updateTime: 'updateTime',
};
Properties
| Name | Type | Description |
|---|---|---|
| address | string | The email address of the contact. |
| arn | string | The Amazon Resource Name (ARN) of the contact. |
| creation | string | The creation time of the EmailContact . |
| name | string | The name of the contact. |
| status | string | The status of the contact. |
| update | string | The time the EmailContact was last updated. |
address
Type:
string
The email address of the contact.
arn
Type:
string
The Amazon Resource Name (ARN) of the contact.
creationTime
Type:
string
The creation time of the EmailContact .
name
Type:
string
The name of the contact.
status
Type:
string
The status of the contact.
Only activated contacts receive emails.
updateTime
Type:
string
The time the EmailContact was last updated.

.NET
Go
Java
Python
TypeScript