interface CfnCustomVerificationEmailTemplateProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnCustomVerificationEmailTemplateProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnCustomVerificationEmailTemplateProps |
Java | software.amazon.awscdk.services.ses.CfnCustomVerificationEmailTemplateProps |
Python | aws_cdk.aws_ses.CfnCustomVerificationEmailTemplateProps |
TypeScript | aws-cdk-lib » aws_ses » CfnCustomVerificationEmailTemplateProps |
Properties for defining a CfnCustomVerificationEmailTemplate.
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 cfnCustomVerificationEmailTemplateProps: ses.CfnCustomVerificationEmailTemplateProps = {
failureRedirectionUrl: 'failureRedirectionUrl',
fromEmailAddress: 'fromEmailAddress',
successRedirectionUrl: 'successRedirectionUrl',
templateContent: 'templateContent',
templateName: 'templateName',
templateSubject: 'templateSubject',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| failure | string | The URL that the recipient of the verification email is sent to if his or her address is not successfully verified. |
| from | string | The email address that the custom verification email is sent from. |
| success | string | The URL that the recipient of the verification email is sent to if his or her address is successfully verified. |
| template | string | The content of the custom verification email. |
| template | string | The name of the custom verification email template. |
| template | string | The subject line of the custom verification email. |
| tags? | Cfn[] | The tags (keys and values) associated with the tenant. |
failureRedirectionUrl
Type:
string
The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.
fromEmailAddress
Type:
string
The email address that the custom verification email is sent from.
successRedirectionUrl
Type:
string
The URL that the recipient of the verification email is sent to if his or her address is successfully verified.
templateContent
Type:
string
The content of the custom verification email.
The total size of the email must be less than 10 MB. The message body may contain HTML, with some limitations.
templateName
Type:
string
The name of the custom verification email template.
templateSubject
Type:
string
The subject line of the custom verification email.
tags?
Type:
Cfn[]
(optional)
The tags (keys and values) associated with the tenant.

.NET
Go
Java
Python
TypeScript