Module Values.LiveTailSessionStartSource

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

Sourcetype nonrec t = {
  1. requestId : RequestId.t option;
    (*

    The unique ID generated by CloudWatch Logs to identify this Live Tail session request.

    *)
  2. sessionId : SessionId.t option;
    (*

    The unique ID generated by CloudWatch Logs to identify this Live Tail session.

    *)
  3. logGroupIdentifiers : StartLiveTailLogGroupIdentifiers.t option;
    (*

    An array of the names and ARNs of the log groups included in this Live Tail session.

    *)
  4. logStreamNames : InputLogStreamNames.t option;
    (*

    If your StartLiveTail operation request included a logStreamNames parameter that filtered the session to only include certain log streams, these streams are listed here.

    *)
  5. logStreamNamePrefixes : InputLogStreamNames.t option;
    (*

    If your StartLiveTail operation request included a logStreamNamePrefixes parameter that filtered the session to only include log streams that have names that start with certain prefixes, these prefixes are listed here.

    *)
  6. logEventFilterPattern : FilterPattern.t option;
    (*

    An optional pattern to filter the results to include only log events that match the pattern. For example, a filter pattern of error 404 displays only log events that include both error and 404. For more information about filter pattern syntax, see Filter and Pattern Syntax.

    *)
}
Sourceval make : ?requestId:??? -> ?sessionId:??? -> ?logGroupIdentifiers:??? -> ?logStreamNames:??? -> ?logStreamNamePrefixes:??? -> ?logEventFilterPattern:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of LogGroupIdentifier.t ] list | `String of RequestId.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