Module Values.InvokeWithResponseStreamResponseEventSource

An object that includes a chunk of the response payload. When the stream has ended, Lambda includes a InvokeComplete object.

Sourcetype nonrec t = {
  1. payloadChunk : InvokeResponseStreamUpdate.t option;
    (*

    A chunk of the streamed response payload.

    *)
  2. invokeComplete : InvokeWithResponseStreamCompleteEvent.t option;
    (*

    An object that's returned when the stream has ended and all the payload chunks have been returned.

    *)
}
Sourceval make : ?payloadChunk:??? -> ?invokeComplete:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Blob of Blob.t | `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