Module Values.AnalysisRuleIdMappingTableSource

Defines details for the analysis rule ID mapping table.

Sourcetype nonrec t = {
  1. joinColumns : AnalysisRuleIdMappingTableJoinColumnsList.t option;
    (*

    The columns that query runners are allowed to use in an INNER JOIN statement.

    *)
  2. queryConstraints : QueryConstraintList.t option;
    (*

    The query constraints of the analysis rule ID mapping table.

    *)
  3. dimensionColumns : AnalysisRuleColumnList.t option;
    (*

    The columns that query runners are allowed to select, group by, or filter by.

    *)
}
Sourceval make : ?joinColumns:??? -> ?queryConstraints:??? -> ?dimensionColumns:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of AnalysisRuleColumnName.t | `Structure of (string * [> `Structure of (string * [> `List of [> `String of AnalysisRuleColumnName.t ] list ]) 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