Module Values.ColumnStatisticsConfigurationSource

Configuration for column evaluations for a profile job. ColumnStatisticsConfiguration can be used to select evaluations and override parameters of evaluations for particular columns.

Sourcetype nonrec t = {
  1. selectors : ColumnSelectorList.t option;
    (*

    List of column selectors. Selectors can be used to select columns from the dataset. When selectors are undefined, configuration will be applied to all supported columns.

    *)
  2. statistics : StatisticsConfiguration.t;
    (*

    Configuration for evaluations. Statistics can be used to select evaluations and override parameters of evaluations.

    *)
}
Sourceval context_ : string
Sourceval make : ?selectors:??? -> statistics:StatisticsConfiguration.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ColumnName.t ]) list ] list | `Structure of (string * [> `List of [> `String of Statistic.t | `Structure of (string * [> `Map of ([> `String of ParameterName.t ] * [> `String of ParameterValue.t ]) list | `String of Statistic.t ]) list ] list ]) 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