Module Values.InputSource

Represents information on how DataBrew can find data, in either the Glue Data Catalog or Amazon S3.

Sourcetype nonrec t = {
  1. s3InputDefinition : S3Location.t option;
    (*

    The Amazon S3 location where the data is stored.

    *)
  2. dataCatalogInputDefinition : DataCatalogInputDefinition.t option;
    (*

    The Glue Data Catalog parameters for the data.

    *)
  3. databaseInputDefinition : DatabaseInputDefinition.t option;
    (*

    Connection information for dataset input files stored in a database.

    *)
  4. metadata : Metadata.t option;
    (*

    Contains additional resource information needed for specific datasets.

    *)
}
Sourceval make : ?s3InputDefinition:??? -> ?dataCatalogInputDefinition:??? -> ?databaseInputDefinition:??? -> ?metadata:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of Bucket.t | `Structure of (string * [> `String of Bucket.t ]) list ]) list ]) 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