Class: Aws::Plugins::Protocols::EC2::Handler
- Inherits:
-
Query::Handler
- Object
- Seahorse::Client::Handler
- Query::Handler
- Aws::Plugins::Protocols::EC2::Handler
- Defined in:
- lib/aws-sdk-core/plugins/protocols/ec2.rb
Constant Summary
Constants inherited from Query::Handler
Query::Handler::CONTENT_TYPE, Query::Handler::METADATA_REF, Query::Handler::METADATA_STRUCT, Query::Handler::WRAPPER_STRUCT
Instance Attribute Summary
Attributes inherited from Seahorse::Client::Handler
Instance Method Summary collapse
Methods inherited from Query::Handler
Methods inherited from Seahorse::Client::Handler
Constructor Details
This class inherits a constructor from Seahorse::Client::Handler
Instance Method Details
#apply_params(param_list, params, rules) ⇒ Object
8 9 10 |
# File 'lib/aws-sdk-core/plugins/protocols/ec2.rb', line 8 def apply_params(param_list, params, rules) Aws::Query::EC2ParamBuilder.new(param_list).apply(rules, params) end |
#parse_xml(context) ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/aws-sdk-core/plugins/protocols/ec2.rb', line 12 def parse_xml(context) if rules = context.operation.output parser = Xml::Parser.new(rules) data = parser.parse(xml(context)) do |path, value| if path.size == 2 && path.last == 'requestId' context.[:request_id] = value end end data else EmptyStructure.new end end |