interface CfnCustomVerificationEmailTemplateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnCustomVerificationEmailTemplateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnCustomVerificationEmailTemplateMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnCustomVerificationEmailTemplateMixinProps |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnCustomVerificationEmailTemplateMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnCustomVerificationEmailTemplateMixinProps |
Properties for CfnCustomVerificationEmailTemplatePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
const cfnCustomVerificationEmailTemplateMixinProps: ses_mixins.CfnCustomVerificationEmailTemplateMixinProps = {
failureRedirectionUrl: 'failureRedirectionUrl',
fromEmailAddress: 'fromEmailAddress',
successRedirectionUrl: 'successRedirectionUrl',
tags: [{
key: 'key',
value: 'value',
}],
templateContent: 'templateContent',
templateName: 'templateName',
templateSubject: 'templateSubject',
};
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. |
| tags? | Cfn[] | The tags (keys and values) associated with the tenant. |
| 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. |
failureRedirectionUrl?
Type:
string
(optional)
The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.
fromEmailAddress?
Type:
string
(optional)
The email address that the custom verification email is sent from.
successRedirectionUrl?
Type:
string
(optional)
The URL that the recipient of the verification email is sent to if his or her address is successfully verified.
tags?
Type:
Cfn[]
(optional)
The tags (keys and values) associated with the tenant.
templateContent?
Type:
string
(optional)
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
(optional)
The name of the custom verification email template.
templateSubject?
Type:
string
(optional)
The subject line of the custom verification email.

.NET
Go
Java
Python
TypeScript