Interface CfnCustomVerificationEmailTemplateMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCustomVerificationEmailTemplateMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.519Z")
@Stability(Stable)
public interface CfnCustomVerificationEmailTemplateMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnCustomVerificationEmailTemplatePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ses.*;
CfnCustomVerificationEmailTemplateMixinProps cfnCustomVerificationEmailTemplateMixinProps = CfnCustomVerificationEmailTemplateMixinProps.builder()
.failureRedirectionUrl("failureRedirectionUrl")
.fromEmailAddress("fromEmailAddress")
.successRedirectionUrl("successRedirectionUrl")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.templateContent("templateContent")
.templateName("templateName")
.templateSubject("templateSubject")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCustomVerificationEmailTemplateMixinPropsstatic final classAn implementation forCfnCustomVerificationEmailTemplateMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe URL that the recipient of the verification email is sent to if his or her address is not successfully verified.default StringThe email address that the custom verification email is sent from.default StringThe URL that the recipient of the verification email is sent to if his or her address is successfully verified.getTags()The tags (keys and values) associated with the tenant.default StringThe content of the custom verification email.default StringThe name of the custom verification email template.default StringThe subject line of the custom verification email.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFailureRedirectionUrl
The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.- See Also:
-
getFromEmailAddress
The email address that the custom verification email is sent from.- See Also:
-
getSuccessRedirectionUrl
The URL that the recipient of the verification email is sent to if his or her address is successfully verified.- See Also:
-
getTags
The tags (keys and values) associated with the tenant.- See Also:
-
getTemplateContent
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.
- See Also:
-
getTemplateName
The name of the custom verification email template.- See Also:
-
getTemplateSubject
The subject line of the custom verification email.- See Also:
-
builder
-