# File lib/aws/dynamo_db/table.rb, line 398
      def batch_get attributes, items, &block
        batch = BatchGet.new(:config => config)
        batch.table(name, attributes, items)
        enum = batch.to_enum(:each_attributes)
        block_given? ? enum.each(&block) : enum
      end