# File lib/fog/aws/parsers/auto_scaling/describe_auto_scaling_instances.rb, line 18
          def end_element(name)
            case name
            when 'member'
              @results['AutoScalingInstances'] << @auto_scaling_instance
              reset_auto_scaling_instance

            when 'AutoScalingGroupName', 'AvailabilityZone', 'HealthStatus',
                 'InstanceId', 'LaunchConfigurationName', 'LifecycleState'
              @auto_scaling_instance[name] = value

            when 'NextToken'
              @results[name] = value

            when 'RequestId'
              @response['ResponseMetadata'][name] = value

            when 'DescribeAutoScalingInstancesResponse'
              @response['DescribeAutoScalingInstancesResult'] = @results
            end
          end