class Aws::Plugins::ParamConverter::Handler

Public Instance Methods

call(context) click to toggle source
# File lib/aws-sdk-core/plugins/param_converter.rb, line 17
def call(context)
  converter = Aws::ParamConverter.new(context.operation.input)
  context.params = converter.convert(context.params)
  @handler.call(context).on_complete do |resp|
    converter.close_opened_files
  end
end