Module Values_0.HudiTargetSource

Specifies an Apache Hudi data source.

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

    An array of Amazon S3 location strings for Hudi, each indicating the root folder with which the metadata files for a Hudi table resides. The Hudi folder may be located in a child folder of the root folder. The crawler will scan all folders underneath a path for a Hudi folder.

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

    The name of the connection to use to connect to the Hudi target. If your Hudi files are stored in buckets that require VPC authorization, you can set their connection properties here.

    *)
  3. exclusions : PathList.t option;
    (*

    A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.

    *)
  4. maximumTraversalDepth : NullableInteger.t option;
    (*

    The maximum depth of Amazon S3 paths that the crawler can traverse to discover the Hudi metadata folder in your Amazon S3 path. Used to limit the crawler run time.

    *)
}
Sourceval make : ?paths:??? -> ?connectionName:??? -> ?exclusions:??? -> ?maximumTraversalDepth:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NullableInteger.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