Class: Aws::S3::Plugins::UrlEncodedKeys::Handler

Inherits:
Seahorse::Client::Handler
  • Object
show all
Defined in:
lib/aws-sdk-s3/plugins/url_encoded_keys.rb

Instance Method Summary collapse

Instance Method Details

#call(context) ⇒ Object



29
30
31
32
33
34
35
# File 'lib/aws-sdk-s3/plugins/url_encoded_keys.rb', line 29

def call(context)
  if context.params.key?(:encoding_type)
    @handler.call(context) # user managed
  else
    manage_keys(context)
  end
end