Module Values.CreateConfiguredTableInputSource

Creates a new configured table resource.

Sourcetype nonrec t = {
  1. name : DisplayName.t;
    (*

    The name of the configured table.

    *)
  2. description : TableDescription.t option;
    (*

    A description for the configured table.

    *)
  3. tableReference : TableReference.t;
    (*

    A reference to the table being configured.

    *)
  4. allowedColumns : AllowedColumnList.t;
    (*

    The columns of the underlying table that can be used by collaborations or analysis rules.

    *)
  5. analysisMethod : AnalysisMethod.t;
    (*

    The analysis method allowed for the configured tables. DIRECT_QUERY allows SQL queries to be run directly on this table. DIRECT_JOB allows PySpark jobs to be run directly on this table. MULTIPLE allows both SQL queries and PySpark jobs to be run directly on this table.

    *)
  6. selectedAnalysisMethods : SelectedAnalysisMethods.t option;
    (*

    The analysis methods to enable for the configured table. When configured, you must specify at least two analysis methods.

    *)
  7. tags : TagMap.t option;
    (*

    An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?selectedAnalysisMethods:??? -> ?tags:??? -> name:DisplayName.t -> tableReference:TableReference.t -> allowedColumns:AllowedColumnList.t -> analysisMethod:AnalysisMethod.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `String of ColumnName.t ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of DisplayName.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of GlueTableName.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of ColumnName.t ]) list ] 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