# File lib/aws/dynamo_db/item_collection.rb, line 241
      def at hash_value, range_value = nil
        table.assert_schema!
        if table.composite_key? and !range_value
          raise ArgumentError, "a range key value is required for this table"
        end
        Item.new(table, hash_value, range_value)
      end