Module Values.StartLiveTailResponseStreamSource

This object includes the stream returned by your StartLiveTail request.

Sourcetype nonrec t = {
  1. sessionStart : LiveTailSessionStart.t option;
    (*

    This object contains information about this Live Tail session, including the log groups included and the log stream filters, if any.

    *)
  2. sessionUpdate : LiveTailSessionUpdate.t option;
    (*

    This object contains the log events and session metadata.

    *)
  3. sessionTimeoutException : SessionTimeoutException.t option;
    (*

    This exception is returned in the stream when the Live Tail session times out. Live Tail sessions time out after three hours.

    *)
  4. sessionStreamingException : SessionStreamingException.t option;
    (*

    This exception is returned if an unknown error occurs.

    *)
}
Sourceval make : ?sessionStart:??? -> ?sessionUpdate:??? -> ?sessionTimeoutException:??? -> ?sessionStreamingException:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `String of LogGroupIdentifier.t | `Structure of (string * [> `Long of Timestamp.t | `String of LogStreamName.t ]) list ] list | `String of RequestId.t | `Structure of (string * [> `Boolean of IsSampled.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