You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::Plugins::Protocols::EC2::Handler
- Inherits:
-
Query::Handler
- Object
- Seahorse::Client::Handler
- Query::Handler
- Aws::Plugins::Protocols::EC2::Handler
- Defined in:
- aws-sdk-core/lib/aws-sdk-core/plugins/protocols/ec2.rb
Instance Attribute Summary
Attributes inherited from Seahorse::Client::Handler
Instance Method Summary collapse
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 'aws-sdk-core/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 'aws-sdk-core/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 |