Module Values.FileSource

The file in Amazon S3 where your data is saved.

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

    The name of the Amazon S3 bucket from which data is imported.

    *)
  2. key : String_.t;
    (*

    The key of the Amazon S3 object that contains your data. Each object has a key that is a unique identifier. Each object has exactly one key.

    *)
  3. versionId : String_.t option;
    (*

    The version ID to identify a specific version of the Amazon S3 object that contains your data.

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