Module Values_0.AttributeAggregationFunctionSource

Aggregation for attributes.

Sourcetype nonrec t = {
  1. simpleAttributeAggregation : SimpleAttributeAggregationFunction.t option;
    (*

    The built-in aggregation functions for attributes. UNIQUE_VALUE: Returns the unique value for a field, aggregated by the dimension fields.

    *)
  2. valueForMultipleValues : String_.t option;
    (*

    Used by the UNIQUE_VALUE aggregation function. If there are multiple values for the field used by the aggregation, the value for this property will be returned instead. Defaults to '*'.

    *)
}
Sourceval make : ?simpleAttributeAggregation:??? -> ?valueForMultipleValues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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