Module Values.SelectObjectContentEventStreamSource

The container for selecting objects from a content event stream.

Sourcetype nonrec t = {
  1. records : RecordsEvent.t option;
    (*

    The Records Event.

    *)
  2. stats : StatsEvent.t option;
    (*

    The Stats Event.

    *)
  3. progress : ProgressEvent.t option;
    (*

    The Progress Event.

    *)
  4. cont : ContinuationEvent.t option;
    (*

    The Continuation Event.

    *)
  5. end_ : EndEvent.t option;
    (*

    The End Event.

    *)
}
Sourceval make : ?records:??? -> ?stats:??? -> ?progress:??? -> ?cont:??? -> ?end_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Blob of Body.t | `Structure of (string * [> `Long of BytesScanned.t ]) list ]) 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