Module Values.S3DestinationSource

The name and prefix of the Amazon S3 bucket where AWS Signer saves your signed objects.

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

    Name of the S3 bucket.

    *)
  2. prefix : Prefix.t option;
    (*

    An S3 prefix that you can use to limit responses to those that begin with the specified prefix.

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