Module Values_0.IcebergTargetSource

Specifies an Apache Iceberg data source where Iceberg tables are stored in Amazon S3.

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

    One or more Amazon S3 paths that contains Iceberg metadata folders as s3://bucket/prefix.

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

    The name of the connection to use to connect to the Iceberg target.

    *)
  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 Iceberg 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