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