def end_element(name)
if @section == :resource_record_set
case name
when 'Name', 'Type', 'TTL'
@resource_record_set[name] = value
when 'Value'
@resource_record_set['ResourceRecords'] << value
when 'AliasTarget'
@resource_record_set[name] = @alias_target
@alias_target = {}
when 'HostedZoneId', 'DNSName'
@alias_target[name] = value
when 'ResourceRecordSet'
@response['ResourceRecordSets'] << @resource_record_set
@resource_record_set = {}
@resource_record_set['ResourceRecords'] = []
when 'ResourceRecordSets'
@section = :main
end
elsif @section == :main
case name
when 'MaxItems'
@response[name] = value.to_i
when 'NextRecordName', 'NextRecordType'
@response[name] = value
when 'IsTruncated'
@response[name] = value == 'true'
end
end
end