Module Values_0.DataQualityGlueTableSource

The database and table in the Glue Data Catalog that is used for input or output data for Data Quality Operations.

Sourcetype nonrec t = {
  1. databaseName : NameString.t;
    (*

    A database name in the Glue Data Catalog.

    *)
  2. tableName : NameString.t;
    (*

    A table name in the Glue Data Catalog.

    *)
  3. catalogId : NameString.t option;
    (*

    A unique identifier for the Glue Data Catalog.

    *)
  4. connectionName : NameString.t option;
    (*

    The name of the connection to the Glue Data Catalog.

    *)
  5. 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.

    *)
  6. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?catalogId:??? -> ?connectionName:??? -> ?additionalOptions:??? -> ?preProcessingQuery:??? -> databaseName:NameString.t -> tableName:NameString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of NameString.t ] * [> `String of DescriptionString.t ]) list | `String of NameString.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