Module Values.InsightResultValueSource

The insight result values returned by the GetInsightResults operation.

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

    The value of the attribute that the findings are grouped by for the insight whose results are returned by the GetInsightResults operation.

    *)
  2. count : Integer.t option;
    (*

    The number of findings returned for each GroupByAttributeValue.

    *)
}
Sourceval make : ?groupByAttributeValue:??? -> ?count:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `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