CfnCustomVerificationEmailTemplateProps
- class aws_cdk.aws_ses.CfnCustomVerificationEmailTemplateProps(*, failure_redirection_url, from_email_address, success_redirection_url, template_content, template_name, template_subject, tags=None)
Bases:
objectProperties for defining a
CfnCustomVerificationEmailTemplate.- Parameters:
failure_redirection_url (
str) – The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.from_email_address (
str) – The email address that the custom verification email is sent from.success_redirection_url (
str) – The URL that the recipient of the verification email is sent to if his or her address is successfully verified.template_content (
str) – 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.template_name (
str) – The name of the custom verification email template.template_subject (
str) – The subject line of the custom verification email.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags (keys and values) associated with the tenant.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_ses as ses cfn_custom_verification_email_template_props = ses.CfnCustomVerificationEmailTemplateProps( failure_redirection_url="failureRedirectionUrl", from_email_address="fromEmailAddress", success_redirection_url="successRedirectionUrl", template_content="templateContent", template_name="templateName", template_subject="templateSubject", # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- failure_redirection_url
The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.
- from_email_address
The email address that the custom verification email is sent from.
- success_redirection_url
The URL that the recipient of the verification email is sent to if his or her address is successfully verified.
- tags
The tags (keys and values) associated with the tenant.
- template_content
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.
- template_name
The name of the custom verification email template.
- template_subject
The subject line of the custom verification email.