# File lib/aws/ec2/route_table_collection.rb, line 58
      def _each_item options = {}, &block
        response = filtered_request(:describe_route_tables, options, &block)
        response.route_table_set.each do |t|

          route_table = RouteTable.new_from(:describe_route_tables, t, 
            t.route_table_id, :config => config)

          yield(route_table)

        end
      end