class Aws::Query::Handler

def call(context)

Returns:
  • (Seahorse::Client::Response) -

Parameters:
  • context (Seahorse::Client::RequestContext) --
def call(context)
  build_request(context)
  @handler.call(context).on_success do |response|
    response.error = nil
    parsed = parse_xml(context)
    if parsed.nil? || parsed == EmptyStructure
      response.data = EmptyStructure.new
    else
      response.data = parsed
    end
  end
end