Values_0.DataQualityGlueTableSourceThe database and table in the Glue Data Catalog that is used for input or output data for Data Quality Operations.
type nonrec t = {databaseName : NameString.t;A database name in the Glue Data Catalog.
*)tableName : NameString.t;A table name in the Glue Data Catalog.
*)catalogId : NameString.t option;A unique identifier for the Glue Data Catalog.
*)connectionName : NameString.t option;The name of the connection to the Glue Data Catalog.
*)additionalOptions : GlueTableAdditionalOptions.t option;Additional options for the table. Currently there are two keys supported: pushDownPredicate: to filter on partitions without having to list and read all the files in your dataset. catalogPartitionPredicate: to use server-side partition pruning using partition indexes in the Glue Data Catalog.
*)preProcessingQuery : PreProcessingQueryString.t option;SQL Query of SparkSQL format that can be used to pre-process the data for the table in Glue Data Catalog, before running the Data Quality Operation.
*)}val make :
?catalogId:??? ->
?connectionName:??? ->
?additionalOptions:??? ->
?preProcessingQuery:??? ->
databaseName:NameString.t ->
tableName:NameString.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of NameString.t ]
* [> `String of DescriptionString.t ])
list
| `String of NameString.t ])
list ]