Class: RightAws::Route53Interface::GetChangeParser

Inherits:
RightAws::RightAWSParser show all
Defined in:
lib/route_53/right_route_53_interface.rb

Overview

:nodoc:

Constant Summary

Constants inherited from RightAws::RightAWSParser

RightAws::RightAWSParser::DEFAULT_XML_LIBRARY

Instance Attribute Summary

Attributes inherited from RightAws::RightAWSParser

#full_tag_name, #result, #tag, #xml_lib, #xmlpath

Instance Method Summary collapse

Methods inherited from RightAws::RightAWSParser

#initialize, #method_missing, #parse, #tag_end, #tag_start, #tagstart, #tagtext, #text, xml_lib, xml_lib=

Constructor Details

This class inherits a constructor from RightAws::RightAWSParser

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class RightAws::RightAWSParser

Instance Method Details

#resetObject



627
628
629
# File 'lib/route_53/right_route_53_interface.rb', line 627

def reset
  @result = { }
end

#tagend(name) ⇒ Object



630
631
632
633
634
635
636
# File 'lib/route_53/right_route_53_interface.rb', line 630

def tagend(name)
  case name
  when 'Id'          then @result[:aws_id]       = @text
  when 'Status'      then @result[:status]       = @text
  when 'SubmittedAt' then @result[:submitted_at] = @text
  end
end