import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *
Indicates that a custom verification email template with the name you specified already exists.
*/ export interface CustomVerificationEmailTemplateAlreadyExistsException extends __ServiceException__<_CustomVerificationEmailTemplateAlreadyExistsExceptionDetails> { name: "CustomVerificationEmailTemplateAlreadyExistsException"; } export interface _CustomVerificationEmailTemplateAlreadyExistsExceptionDetails { /** *Indicates that the provided custom verification email template with the specified template name already exists.
*/ CustomVerificationEmailTemplateName?: string; }