Sha256: de33da7c2aecd6f940c390accd5b3e9c0de5517e1df8de41d5f1842a500e0e82
Contents?: true
Size: 733 Bytes
Versions: 102
Compression:
Stored size: 733 Bytes
Contents
module Aws module Plugins module Protocols class EC2 < Seahorse::Client::Plugin class Handler < Aws::Query::Handler def apply_params(param_list, params, rules) Aws::Query::EC2ParamBuilder.new(param_list).apply(rules, params) end def parse_xml(context) if rules = context.operation.output data = Xml::Parser.new(rules).parse(xml(context)) do |h| context.metadata[:request_id] = h['requestId'] end data else EmptyStructure.new end end end handler(Handler) handler(Xml::ErrorHandler, step: :sign) end end end end
Version data entries
102 entries across 102 versions & 1 rubygems