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)
  if input = context.operation.input
    context.params = Aws::ParamConverter.convert(input, context.params)
  end
  @handler.call(context)
end