Module Values.HumanLoopActivationOutputSource

Shows the results of the human in the loop evaluation. If there is no HumanLoopArn, the input did not trigger human review.

Sourcetype nonrec t = {
  1. humanLoopArn : HumanLoopArn.t option;
    (*

    The Amazon Resource Name (ARN) of the HumanLoop created.

    *)
  2. humanLoopActivationReasons : HumanLoopActivationReasons.t option;
    (*

    Shows if and why human review was needed.

    *)
  3. humanLoopActivationConditionsEvaluationResults : HumanLoopActivationConditionsEvaluationResults.t option;
    (*

    Shows the result of condition evaluations, including those conditions which activated a human review.

    *)
}
Sourceval make : ?humanLoopArn:??? -> ?humanLoopActivationReasons:??? -> ?humanLoopActivationConditionsEvaluationResults:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of HumanLoopActivationReason.t ] list | `String of HumanLoopArn.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