# File lib/aws/ec2/route_table_collection.rb, line 31
      def create options = {}

        client_opts = {}
        client_opts[:vpc_id] = vpc_id_option(options)
        
        resp = client.create_route_table(client_opts)

        RouteTable.new_from(:create_route_table, resp.route_table,
          resp.route_table.route_table_id, :config => config)

      end