Module Values.LiveTailSessionUpdateSource

This object contains the log events and metadata for a Live Tail session.

Sourcetype nonrec t = {
  1. sessionMetadata : LiveTailSessionMetadata.t option;
    (*

    This object contains the session metadata for a Live Tail session.

    *)
  2. sessionResults : LiveTailSessionResults.t option;
    (*

    An array, where each member of the array includes the information for one log event in the Live Tail session. A sessionResults array can include as many as 500 log events. If the number of log events matching the request exceeds 500 per second, the log events are sampled down to 500 log events to be included in each sessionUpdate structure.

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