class Fog::Parsers::AWS::EMR::AddInstanceGroups
Public Instance Methods
end_element(name)
click to toggle source
# File lib/fog/aws/parsers/emr/add_instance_groups.rb, line 14 def end_element(name) case name when 'JobFlowId' @response[name] = value when 'member' @response['InstanceGroupIds'] << value end end
start_element(name, attrs = [])
click to toggle source
Calls superclass method
# File lib/fog/aws/parsers/emr/add_instance_groups.rb, line 6 def start_element(name, attrs = []) super case name when 'InstanceGroupIds' @response['InstanceGroupIds'] = [] end end