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

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

Instance Attribute Summary

Attributes inherited from Seahorse::Client::Handler

#handler

Instance Method Summary collapse

Methods inherited from Seahorse::Client::Handler

#initialize, #inspect

Constructor Details

This class inherits a constructor from Seahorse::Client::Handler

Instance Method Details

#call(context) ⇒ Object



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

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