# File lib/fog/aws/parsers/elb/tag_list_parser.rb, line 30
          def end_element(name)
            super
            case name
              when 'member'
                if @in_tags
                  @tags[@this_key] = @this_value
                  @this_key, @this_value = nil, nil
                else
                  @response['DescribeTagsResult']['LoadBalancers'] << { 'Tags' => @tags, 'LoadBalancerName' => @load_balancer_name }
                end
              when 'Key'
                @this_key = value
              when 'Value'
                @this_value = value
              when 'LoadBalancerName'
                @load_balancer_name = value
              when 'RequestId'
                @response['ResponseMetadata'][name] = value
              when 'Tags'
                @in_tags = false
            end
          end