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