class

Awscr::Signer::QueryString

Inherits Enumerable < Reference < Object

Represents a QueryString. When converted to a String the keys and values are sorted and URI encoded.

qs = QueryString.new
qs.add("k", "v")
qs.to_s # => "k&v"

Instance methods

add(k : String, v : String)

Adds a key and value to the query string

Source
each

Must yield this collection's elements to the block.

Source
to_s(io : IO)

Returns the object as a string.

Source