interface EmailIdentityReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.EmailIdentityReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#EmailIdentityReference |
Java | software.amazon.awscdk.services.ses.EmailIdentityReference |
Python | aws_cdk.aws_ses.EmailIdentityReference |
TypeScript | aws-cdk-lib » aws_ses » EmailIdentityReference |
A reference to a EmailIdentity resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses as ses } from 'aws-cdk-lib';
const emailIdentityReference: ses.EmailIdentityReference = {
emailIdentity: 'emailIdentity',
};
Properties
| Name | Type | Description |
|---|---|---|
| email | string | The EmailIdentity of the EmailIdentity resource. |
emailIdentity
Type:
string
The EmailIdentity of the EmailIdentity resource.

.NET
Go
Java
Python
TypeScript