aws-beam / aws-codegen

Code generator for AWS clients in Erlang and Elixir.
Other
53 stars 49 forks source link

URI parameters with format {Name+} should be URI encoded correctly #29

Closed jfacorro closed 4 years ago

jfacorro commented 4 years ago

The {Name+} format for a URI parameter means that there can be one or more values provided separated by /. Therefore each value should be URI encoded separately. We are currently encoding all the values together.

For example in S3 the {Key+} parameter in the PutObject operation.