Module Values.S3LocationSource

The location of an external Dataview in an S3 bucket.

Sourcetype nonrec t = {
  1. bucket : S3BucketName.t option;
    (*

    The name of the S3 bucket.

    *)
  2. key : S3Key.t option;
    (*

    The path of the folder, within the S3 bucket that contains the Dataset.

    *)
}
Sourceval make : ?bucket:??? -> ?key:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3BucketName.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