Module Values.AnalysisRuleCustomSource

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

Sourcetype nonrec t = {
  1. allowedAnalyses : AnalysisRuleCustomAllowedAnalysesList.t;
    (*

    The ARN of the analysis templates that are allowed by the custom analysis rule.

    *)
  2. allowedAnalysisProviders : AnalysisRuleCustomAllowedAnalysisProvidersList.t option;
    (*

    The IDs of the Amazon Web Services accounts that are allowed to query by the custom analysis rule. Required when allowedAnalyses is ANY_QUERY.

    *)
  3. additionalAnalyses : AdditionalAnalyses.t option;
    (*

    An indicator as to whether additional analyses (such as Clean Rooms ML) can be applied to the output of the direct query.

    *)
  4. disallowedOutputColumns : AnalysisRuleColumnList.t option;
    (*

    A list of columns that aren't allowed to be shown in the query output.

    *)
  5. differentialPrivacy : DifferentialPrivacyConfiguration.t option;
    (*

    The differential privacy configuration.

    *)
}
Sourceval context_ : string
Sourceval make : ?allowedAnalysisProviders:??? -> ?additionalAnalyses:??? -> ?disallowedOutputColumns:??? -> ?differentialPrivacy:??? -> allowedAnalyses:AnalysisRuleCustomAllowedAnalysesList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of AnalysisTemplateArnOrQueryWildcard.t ] list | `Structure of (string * [> `List of [> `Structure of (string * [> `String of ColumnName.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