CfnCustomVerificationEmailTemplateMixinProps
- class aws_cdk.mixins_preview.aws_ses.mixins.CfnCustomVerificationEmailTemplateMixinProps(*, failure_redirection_url=None, from_email_address=None, success_redirection_url=None, tags=None, template_content=None, template_name=None, template_subject=None)
Bases:
objectProperties for CfnCustomVerificationEmailTemplatePropsMixin.
- Parameters:
failure_redirection_url (
Optional[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 (
Optional[str]) – The email address that the custom verification email is sent from.success_redirection_url (
Optional[str]) – The URL that the recipient of the verification email is sent to if his or her address is successfully verified.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags (keys and values) associated with the tenant.template_content (
Optional[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 (
Optional[str]) – The name of the custom verification email template.template_subject (
Optional[str]) – The subject line of the custom verification email.
- 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.mixins_preview.aws_ses import mixins as ses_mixins cfn_custom_verification_email_template_mixin_props = ses_mixins.CfnCustomVerificationEmailTemplateMixinProps( failure_redirection_url="failureRedirectionUrl", from_email_address="fromEmailAddress", success_redirection_url="successRedirectionUrl", tags=[CfnTag( key="key", value="value" )], template_content="templateContent", template_name="templateName", template_subject="templateSubject" )
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.