Module Values.LiveTailSessionLogEventSource

This object contains the information for one log event returned in a Live Tail stream.

Sourcetype nonrec t = {
  1. logStreamName : LogStreamName.t option;
    (*

    The name of the log stream that ingested this log event.

    *)
  2. logGroupIdentifier : LogGroupIdentifier.t option;
    (*

    The name or ARN of the log group that ingested this log event.

    *)
  3. message : EventMessage.t option;
    (*

    The log event message text.

    *)
  4. timestamp : Timestamp.t option;
    (*

    The timestamp specifying when this log event was created.

    *)
  5. ingestionTime : Timestamp.t option;
    (*

    The timestamp specifying when this log event was ingested into the log group.

    *)
}
Sourceval make : ?logStreamName:??? -> ?logGroupIdentifier:??? -> ?message:??? -> ?timestamp:??? -> ?ingestionTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Timestamp.t | `String of LogStreamName.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