interface EmailContactProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NotificationsContacts.Mixins.CfnEmailContactPropsMixin.EmailContactProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnotificationscontacts/mixins#CfnEmailContactPropsMixin_EmailContactProperty |
Java | software.amazon.awscdk.mixins.preview.services.notificationscontacts.mixins.CfnEmailContactPropsMixin.EmailContactProperty |
Python | aws_cdk.mixins_preview.aws_notificationscontacts.mixins.CfnEmailContactPropsMixin.EmailContactProperty |
TypeScript | @aws-cdk/mixins-preview » aws_notificationscontacts » mixins » CfnEmailContactPropsMixin » 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 { mixins as notificationscontacts_mixins } from '@aws-cdk/mixins-preview/aws-notificationscontacts';
const emailContactProperty: notificationscontacts_mixins.CfnEmailContactPropsMixin.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
(optional)
The email address of the contact.
arn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the contact.
creationTime?
Type:
string
(optional)
The creation time of the EmailContact .
name?
Type:
string
(optional)
The name of the contact.
status?
Type:
string
(optional)
The status of the contact.
Only activated contacts receive emails.
updateTime?
Type:
string
(optional)
The time the EmailContact was last updated.

.NET
Go
Java
Python
TypeScript