Module Values.PipelineOutputSource

Contains the output from pipeline test operations, including processed records and any errors encountered.

Sourcetype nonrec t = {
  1. record : Record.t option;
    (*

    The processed record output from the pipeline test operation.

    *)
  2. error : PipelineOutputError.t option;
    (*

    Any error that occurred during the pipeline test operation for this record.

    *)
}
Sourceval make : ?record:??? -> ?error:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of String_.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