Module Values.InsightResultsSource

The insight results returned by the GetInsightResults operation.

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

    The ARN of the insight whose results are returned by the GetInsightResults operation.

    *)
  2. groupByAttribute : NonEmptyString.t option;
    (*

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

    *)
  3. resultValues : InsightResultValueList.t option;
    (*

    The list of insight result values returned by the GetInsightResults operation.

    *)
}
Sourceval make : ?insightArn:??? -> ?groupByAttribute:??? -> ?resultValues:??? -> 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