Module Values.TemplateSource

Sourcetype nonrec t = {
  1. templateArn : TemplateArn.t option;
    (*

    The Amazon Resource Name (ARN) of the template.

    *)
  2. templateData : TemplateData.t option;
    (*

    An object that defines the values to use for message variables in the template. This object is a set of key-value pairs. Each key defines a message variable in the template. The corresponding value defines the value to use for that variable.

    *)
}
Sourceval make : ?templateArn:??? -> ?templateData:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TemplateArn.t ]) 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