Module Values_0.StaticFileS3SourceOptionsSource

The structure that contains the Amazon S3 location to download the static file from.

Sourcetype nonrec t = {
  1. bucketName : String_.t;
    (*

    The name of the Amazon S3 bucket.

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

    The identifier of the static file in the Amazon S3 bucket.

    *)
  3. region : String_.t;
    (*

    The Region of the Amazon S3 account that contains the bucket.

    *)
}
Sourceval context_ : string
Sourceval make : bucketName:String_.t -> objectKey:String_.t -> region:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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