Module Values.InspectionDataResponseSource

Contains additional details about the state's execution, including its input and output data processing flow, and HTTP response information. The inspectionLevel request parameter specifies which details are returned.

Sourcetype nonrec t = {
  1. protocol : HTTPProtocol.t option;
    (*

    The protocol used to return the HTTP response.

    *)
  2. statusCode : HTTPStatusCode.t option;
    (*

    The HTTP response status code for the HTTP response.

    *)
  3. statusMessage : HTTPStatusMessage.t option;
    (*

    The message associated with the HTTP status code.

    *)
  4. headers : HTTPHeaders.t option;
    (*

    The response headers associated with the HTTP response.

    *)
  5. body : HTTPBody.t option;
    (*

    The HTTP response returned.

    *)
}
Sourceval make : ?protocol:??? -> ?statusCode:??? -> ?statusMessage:??? -> ?headers:??? -> ?body:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of HTTPProtocol.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