You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
jdisanti opened this issue
Nov 16, 2022
· 1 comment
Labels
A-uriArea: Uri and partsB-rfcBlocked: request for comments. More discussion would help move this along.S-featureSeverity: feature. This adds something new.
In the AWS SDK, we needed to insert query parameters in an existing Uri for our presigning implementation. There wasn't an easy way to do this in http, so we ended up writing the following QueryWriter:
It would be nice to have built-in utilities for manipulating URI components either in this crate, or in a separate related utility crate.
The text was updated successfully, but these errors were encountered:
seanmonstar
added
S-feature
Severity: feature. This adds something new.
B-rfc
Blocked: request for comments. More discussion would help move this along.
A-uri
Area: Uri and parts
labels
Nov 17, 2022
It would be nice to make that easier. I know one of the hopes for the uri::Builder was to make it easier to modify various parts, I wonder if that would be the best place to do so? #206
A-uriArea: Uri and partsB-rfcBlocked: request for comments. More discussion would help move this along.S-featureSeverity: feature. This adds something new.
In the AWS SDK, we needed to insert query parameters in an existing
Uri
for our presigning implementation. There wasn't an easy way to do this inhttp
, so we ended up writing the followingQueryWriter
:https://github.com/awslabs/smithy-rs/blob/a0539e20b069a7de021c84521d8f3c7ba098ad6d/aws/rust-runtime/aws-sigv4/src/http_request/query_writer.rs#L9-L73
It would be nice to have built-in utilities for manipulating URI components either in this crate, or in a separate related utility crate.
The text was updated successfully, but these errors were encountered: