Module SES.Template

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html

type template = {
  1. html_part : string option;
  2. text_part : string option;
  3. template_name : string option;
  4. subject_part : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-template-template.html

type properties = {
  1. template : template option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html;

val make_properties : ?template:template -> unit -> properties
val make_template : ?html_part:string -> ?text_part:string -> ?template_name:string -> subject_part:string -> unit -> template
val yojson_of_template : template -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string