/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource Type definition for AWS::SES::Template */ export interface AwsSesTemplate { Id?: string; Template?: Template; } /** * The content of the email, composed of a subject line, an HTML part, and a text-only part */ export interface Template { /** * The name of the template. */ TemplateName?: string; /** * The subject line of the email. */ SubjectPart: string; /** * The email body that is visible to recipients whose email clients do not display HTML content. */ TextPart?: string; /** * The HTML body of the email. */ HtmlPart?: string; }