# File lib/fog/aws/parsers/compute/describe_network_interface_attribute.rb, line 34
          def end_element(name)
            if @in_description
              case name
              when 'value'
                @response['description'] = value
              when 'description'
                @in_description = false
              end
            elsif @in_group_set
              case name
              when 'item'
                @response['groupSet'][@group['groupId']] = @group['groupName']
                @group = {}
              when 'groupId', 'groupName'
                @group[name] = value
              when 'groupSet'
                @in_group_set = false
              end
            elsif @in_source_dest_check
              case name
              when 'value'
                @response['sourceDestCheck'] = (value == 'true')
              when 'sourceDestCheck'
                @in_source_dest_check = false
              end
            elsif @in_attachment
              case name
              when 'attachmentId', 'instanceId', 'instanceOwnerId', 'deviceIndex', 'status', 'attachTime', 'deleteOnTermination'
                @attachment[name] = value
              when 'attachment'
                @response['attachment'] = @attachment
                @in_attachment          = false
              end
            else
              case name
              when 'requestId', 'networkInterfaceId'
                @response[name] = value
              end
            end
          end