durch / rust-s3

Rust library for interfacing with S3 API compatible services
MIT License
519 stars 198 forks source link

Support custom queries when generating presigned put URLs #389

Closed pepicrft closed 3 months ago

pepicrft commented 4 months ago

When generating pre-signed URLs for uploading multipart parts, the query must include the parameters partNumber and uploadId. Unfortunately, this is not possible with the current interface of this Crate, which assumes that signed URLs don't need to pass custom queries.

This PR adjusts the interface to accept custom queries, too.

durch commented 3 months ago

@pepicrft thank you!