Module Values_0.AggregateSource

Specifies a transform that groups rows by chosen fields and computes the aggregated value by specified function.

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

    The name of the transform node.

    *)
  2. inputs : OneInput.t;
    (*

    Specifies the fields and rows to use as inputs for the aggregate transform.

    *)
  3. groups : GlueStudioPathList.t;
    (*

    Specifies the fields to group by.

    *)
  4. aggs : AggregateOperations.t;
    (*

    Specifies the aggregate functions to be performed on specified fields.

    *)
}
Sourceval context_ : string
Sourceval make : name:NodeName.t -> inputs:OneInput.t -> groups:GlueStudioPathList.t -> aggs:AggregateOperations.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `List of [> `String of EnclosedInStringProperty.t ] list | `String of NodeId.t | `Structure of (string * [> `Enum of string | `List of [> `String of EnclosedInStringProperty.t ] list ]) list ] list | `String of NodeName.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