Module Values.AggregationOutputItemSource

An aggregation output item.

Sourcetype nonrec t = {
  1. value : AggregationAttributeValue.t option;
    (*

    The attribute value of the aggregation output item.

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

    The count of the aggregation output item.

    *)
  3. displayValue : AggregationAttributeDisplayValue.t option;
    (*

    The display value of the aggregation. If the attribute being aggregated corresponds to the id of a public resource, the service automatically resolves the id to the provided display value.

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