Module Values.ProfileConfigurationSource

Configuration for profile jobs. Configuration can be used to select columns, do evaluations, and override default parameters of evaluations. When configuration is undefined, the profile job will apply default settings to all supported columns.

Sourcetype nonrec t = {
  1. datasetStatisticsConfiguration : StatisticsConfiguration.t option;
    (*

    Configuration for inter-column evaluations. Configuration can be used to select evaluations and override parameters of evaluations. When configuration is undefined, the profile job will run all supported inter-column evaluations.

    *)
  2. profileColumns : ColumnSelectorList.t option;
    (*

    List of column selectors. ProfileColumns can be used to select columns from the dataset. When ProfileColumns is undefined, the profile job will profile all supported columns.

    *)
  3. columnStatisticsConfigurations : ColumnStatisticsConfigurationList.t option;
    (*

    List of configurations for column evaluations. ColumnStatisticsConfigurations are used to select evaluations and override parameters of evaluations for particular columns. When ColumnStatisticsConfigurations is undefined, the profile job will profile all supported columns and run all supported evaluations.

    *)
  4. entityDetectorConfiguration : EntityDetectorConfiguration.t option;
    (*

    Configuration of entity detection for a profile job. When undefined, entity detection is disabled.

    *)
}
Sourceval make : ?datasetStatisticsConfiguration:??? -> ?profileColumns:??? -> ?columnStatisticsConfigurations:??? -> ?entityDetectorConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ColumnName.t ]) list ] list | `String of ColumnName.t | `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 ] list | `Structure of (string * [> `List of [> `String of Statistic.t | `Structure of (string * [> `List of [> `String of Statistic.t ] list | `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