Module Values.ColumnSelectorSource

Selector of a column from a dataset for profile job configuration. One selector includes either a column name or a regular expression.

Sourcetype nonrec t = {
  1. regex : ColumnName.t option;
    (*

    A regular expression for selecting a column from a dataset.

    *)
  2. name : ColumnName.t option;
    (*

    The name of a column from a dataset.

    *)
}
Sourceval make : ?regex:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ColumnName.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