import * as __aws_sdk_types from "@aws-sdk/types"; /** *
The content of the custom verification email template.
*/ export interface GetCustomVerificationEmailTemplateOutput extends __aws_sdk_types.MetadataBearer { /** *The name of the custom verification email template.
*/ TemplateName?: string; /** *The email address that the custom verification email is sent from.
*/ FromEmailAddress?: string; /** *The subject line of the custom verification email.
*/ TemplateSubject?: string; /** *The content of the custom verification email.
*/ TemplateContent?: string; /** *The URL that the recipient of the verification email is sent to if his or her address is successfully verified.
*/ SuccessRedirectionURL?: string; /** *The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.
*/ FailureRedirectionURL?: string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }