Module Values.GroupByResultSource

Represents finding statistics grouped by GroupedByField.

Sourcetype nonrec t = {
  1. groupByField : NonEmptyString.t option;
    (*

    The attribute by which filtered security findings should be grouped.

    *)
  2. groupByValues : GroupByValues.t option;
    (*

    An array of grouped values and their respective counts for each GroupByField.

    *)
}
Sourceval make : ?groupByField:??? -> ?groupByValues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of Integer.t | `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.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