Module Values_0.CreateHumanTaskUiRequestSource

Defines the settings you will use for the human review workflow user interface. Reviewers will see a three-panel interface with an instruction area, the item to review, and an input area.

Sourcetype nonrec t = {
  1. humanTaskUiName : HumanTaskUiName.t;
    (*

    The name of the user interface you are creating.

    *)
  2. uiTemplate : UiTemplate.t;
  3. tags : TagList.t option;
    (*

    An array of key-value pairs that contain metadata to help you categorize and organize a human review workflow user interface. Each tag consists of a key and a value, both of which you define.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> humanTaskUiName:HumanTaskUiName.t -> uiTemplate:UiTemplate.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of HumanTaskUiName.t | `Structure of (string * [> `String of TemplateContent.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