Module Values.ImportDataSourceSource

An object that contains details about the data source of the import job.

Sourcetype nonrec t = {
  1. s3Url : S3Url.t;
    (*

    An Amazon S3 URL in the format s3://<bucket_name>/<object>.

    *)
  2. dataFormat : DataFormat.t;
    (*

    The data format of the import job's data source.

    *)
}
Sourceval context_ : string
Sourceval make : s3Url:S3Url.t -> dataFormat:DataFormat.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of S3Url.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