Module Values_0.AggregateOperationSource

Specifies the set of parameters needed to perform aggregation in the aggregate transform.

Sourcetype nonrec t = {
  1. column : EnclosedInStringProperties.t;
    (*

    Specifies the column on the data set on which the aggregation function will be applied.

    *)
  2. aggFunc : AggFunction.t;
    (*

    Specifies the aggregation function to apply. Possible aggregation functions include: avg countDistinct, count, first, last, kurtosis, max, min, skewness, stddev_samp, stddev_pop, sum, sumDistinct, var_samp, var_pop

    *)
}
Sourceval context_ : string
Sourceval make : column:EnclosedInStringProperties.t -> aggFunc:AggFunction.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of EnclosedInStringProperty.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