Module Values.CwLogSource

A structure that contains the information about whether the app monitor stores copies of the data that RUM collects in CloudWatch Logs. If it does, this structure also contains the name of the log group.

Sourcetype nonrec t = {
  1. cwLogEnabled : Boolean.t option;
    (*

    Indicated whether the app monitor stores copies of the data that RUM collects in CloudWatch Logs.

    *)
  2. cwLogGroup : String_.t option;
    (*

    The name of the log group where the copies are stored.

    *)
}
Sourceval make : ?cwLogEnabled:??? -> ?cwLogGroup:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.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