Module Values.ConfiguredTableSource

A table that has been configured for use in a collaboration.

Sourcetype nonrec t = {
  1. id : UUID.t option;
    (*

    The unique ID for the configured table.

    *)
  2. arn : ConfiguredTableArn.t option;
    (*

    The unique ARN for the configured table.

    *)
  3. name : DisplayName.t option;
    (*

    A name for the configured table.

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

    A description for the configured table.

    *)
  5. tableReference : TableReference.t option;
    (*

    The table that this configured table represents.

    *)
  6. createTime : Timestamp.t option;
    (*

    The time the configured table was created.

    *)
  7. updateTime : Timestamp.t option;
    (*

    The time the configured table was last updated

    *)
  8. analysisRuleTypes : ConfiguredTableAnalysisRuleTypeList.t option;
    (*

    The types of analysis rules associated with this configured table. Currently, only one analysis rule may be associated with a configured table.

    *)
  9. analysisMethod : AnalysisMethod.t option;
    (*

    The analysis method for the configured table. 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.

    *)
  10. allowedColumns : AllowedColumnList.t option;
    (*

    The columns within the underlying Glue table that can be used within collaborations.

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

    The selected analysis methods for the configured table.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?description:??? -> ?tableReference:??? -> ?createTime:??? -> ?updateTime:??? -> ?analysisRuleTypes:??? -> ?analysisMethod:??? -> ?allowedColumns:??? -> ?selectedAnalysisMethods:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `String of ColumnName.t ] list | `String of UUID.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 | `Timestamp of Timestamp.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