Module Values.CreateReviewTemplateInputSource

Create a review template. Disclaimer Do not include or gather personal identifiable information (PII) of end users or other identifiable individuals in or via your review templates. If your review template or those shared with you and used in your account do include or collect PII you are responsible for: ensuring that the included PII is processed in accordance with applicable law, providing adequate privacy notices, and obtaining necessary consents for processing such data.

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

    Name of the review template.

    *)
  2. description : TemplateDescription.t;
    (*

    The review template description.

    *)
  3. lenses : ReviewTemplateLenses.t;
    (*

    Lenses applied to the review template.

    *)
  4. notes : Notes.t option;
  5. tags : TagMap.t option;
    (*

    The tags assigned to the review template.

    *)
  6. clientRequestToken : ClientRequestToken.t;
}
Sourceval context_ : string
Sourceval make : ?notes:??? -> ?tags:??? -> templateName:TemplateName.t -> description:TemplateDescription.t -> lenses:ReviewTemplateLenses.t -> clientRequestToken:ClientRequestToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of LensAlias.t ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of TemplateName.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