class Aws::Sigv2::Signer

def path(url)

Returns:
  • (String) -

Parameters:
  • url (URI::HTTP, URI::HTTPS) --
def path(url)
  if url.path == ''
    '/'
  else
    uri_escape_path(url.path)
  end
end