Method: Aws::Signers::V4#path

Defined in:
lib/aws-sdk-core/signers/v4.rb

#path(uri) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



153
154
155
156
157
158
159
160
# File 'lib/aws-sdk-core/signers/v4.rb', line 153

def path(uri)
  path = uri.path == '' ? '/' : uri.path
  if @service_name == 's3'
    path
  else
    Seahorse::Util.uri_path_escape(path)
  end
end