Module Values.GroupCountSource

Provides a group of results for a query that retrieved aggregated statistical data about findings.

Sourcetype nonrec t = {
  1. count : Awso.Import.Int64.t option;
    (*

    The total number of findings in the group of query results.

    *)
  2. groupKey : string option;
    (*

    The name of the property that defines the group in the query results, as specified by the groupBy property in the query request.

    *)
}
Sourceval make : ?count:??? -> ?groupKey:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Awso.Import.Int64.t | `String of string ]) 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