Module Values_0.DataPrepAggregationFunctionSource

Defines the type of aggregation function to apply to data during data preparation, supporting simple and list aggregations.

Sourcetype nonrec t = {
  1. simpleAggregation : DataPrepSimpleAggregationFunction.t option;
    (*

    A simple aggregation function such as SUM, COUNT, AVERAGE, MIN, MAX, MEDIAN, VARIANCE, or STANDARD_DEVIATION.

    *)
  2. listAggregation : DataPrepListAggregationFunction.t option;
    (*

    A list aggregation function that concatenates values from multiple rows into a single delimited string.

    *)
}
Sourceval make : ?simpleAggregation:??? -> ?listAggregation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of ColumnName.t ]) list ]) 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