Module Values.SummarizationDimensionOverviewSource

Provides an overview of how data is summarized across different dimensions.

Sourcetype nonrec t = {
  1. name : String_.t option;
    (*

    Name of the summarization dimension.

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

    Total number of occurrences for this dimension.

    *)
  3. sampleValues : SampleAggregationDimensionValues.t option;
    (*

    Indicates the sample values found within the dimension.

    *)
}
Sourceval make : ?name:??? -> ?count:??? -> ?sampleValues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `String of SampleAggregationDimensionValuesMemberString.t ] list | `String of String_.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