Class: Aws::RpcV2::Handler

Inherits:
Seahorse::Client::Handler show all
Defined in:
lib/aws-sdk-core/rpc_v2/handler.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) ⇒ Seahorse::Client::Response



8
9
10
11
12
13
14
# File 'lib/aws-sdk-core/rpc_v2/handler.rb', line 8

def call(context)
  build_request(context)
  response = @handler.call(context)
  response.on(200..299) { |resp| resp.data = parse_body(context) }
  response.on(200..599) { |_resp| apply_request_id(context) }
  response
end