Module Values.AggregateLogGroupSummarySource

Contains an aggregate summary of log groups grouped by data source characteristics, including the count of log groups and their grouping identifiers.

Sourcetype nonrec t = {
  1. logGroupCount : LogGroupCount.t option;
    (*

    The number of log groups in this aggregate summary group.

    *)
  2. groupingIdentifiers : GroupingIdentifiers.t option;
    (*

    An array of key-value pairs that identify the data source characteristics used to group the log groups. The size and content of this array depends on the groupBy parameter specified in the request.

    *)
}
Sourceval make : ?logGroupCount:??? -> ?groupingIdentifiers:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of LogGroupCount.t | `List of [> `Structure of (string * [> `String of GroupingIdentifierKey.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