Interface CfnCustomVerificationEmailTemplateProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCustomVerificationEmailTemplateProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-02T12:05:17.364Z")
@Stability(Stable)
public interface CfnCustomVerificationEmailTemplateProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.ses.*;
CfnCustomVerificationEmailTemplateProps cfnCustomVerificationEmailTemplateProps = CfnCustomVerificationEmailTemplateProps.builder()
.failureRedirectionUrl("failureRedirectionUrl")
.fromEmailAddress("fromEmailAddress")
.successRedirectionUrl("successRedirectionUrl")
.templateContent("templateContent")
.templateName("templateName")
.templateSubject("templateSubject")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCustomVerificationEmailTemplatePropsstatic final classAn implementation forCfnCustomVerificationEmailTemplateProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.The email address that the custom verification email is sent from.The 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.The content of the custom verification email.The name of the custom verification email template.The 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:
-
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:
-
getTags
The tags (keys and values) associated with the tenant.- See Also:
-
builder
-