Module Values.UpdateEmailTemplateRequestSource

Represents a request to update an email template. For more information, see the Amazon SES Developer Guide.

Sourcetype nonrec t = {
  1. templateName : EmailTemplateName.t;
    (*

    The name of the template.

    *)
  2. templateContent : EmailTemplateContent.t;
    (*

    The content of the email template, composed of a subject line, an HTML part, and a text-only part.

    *)
}
Sourceval context_ : string
Sourceval make : templateName:EmailTemplateName.t -> templateContent:EmailTemplateContent.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of EmailTemplateName.t | `Structure of (string * [> `String of EmailTemplateSubject.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t