Module Values.ConfiguredTableAssociationAnalysisRulePolicyV1Source

Controls on the query specifications that can be run on an associated configured table.

Sourcetype nonrec t = {
  1. list : ConfiguredTableAssociationAnalysisRuleList.t option;
    (*

    Analysis rule type that enables only list queries on a configured table.

    *)
  2. aggregation : ConfiguredTableAssociationAnalysisRuleAggregation.t option;
    (*

    Analysis rule type that enables only aggregation queries on a configured table.

    *)
  3. custom : ConfiguredTableAssociationAnalysisRuleCustom.t option;
    (*

    Analysis rule type that enables the table owner to approve custom SQL queries on their configured tables. It supports differential privacy.

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