Module Values_0.DeltaTargetSource

Specifies a Delta data store to crawl one or more Delta tables.

Sourcetype nonrec t = {
  1. deltaTables : PathList.t option;
    (*

    A list of the Amazon S3 paths to the Delta tables.

    *)
  2. connectionName : ConnectionName.t option;
    (*

    The name of the connection to use to connect to the Delta table target.

    *)
  3. writeManifest : NullableBoolean.t option;
    (*

    Specifies whether to write the manifest files to the Delta table path.

    *)
  4. createNativeDeltaTable : NullableBoolean.t option;
    (*

    Specifies whether the crawler will create native tables, to allow integration with query engines that support querying of the Delta transaction log directly.

    *)
}
Sourceval make : ?deltaTables:??? -> ?connectionName:??? -> ?writeManifest:??? -> ?createNativeDeltaTable:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `List of [> `String of Path.t ] list | `String of ConnectionName.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