class Aws::Rest::Handler

def call(context)

def call(context)
  Rest::Request::Builder.new.apply(context)
  response = @handler.call(context)
  response.on(200..299) { |resp| Response::Parser.new.apply(resp) }
  response.on(200..599) { |_resp| apply_request_id(context) }
end