# File lib/aws/ec2/resource.rb, line 102
      def find_in_response response
        self.class.attribute_providers.each do |provider|
          if provider.request_types.include?(response.request_type)
            return send(provider.finder_method, response)
          end
        end
      end