1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/requests/dynamodb/batch_get_item.rb

42 lines
1.5 KiB
Ruby
Raw Normal View History

module Fog
module AWS
class DynamoDB
class Real
# Get DynamoDB items
#
# ==== Parameters
# * 'request_items'<~Hash>:
# * 'table_name'<~Hash>:
# * 'Keys'<~Array>: array of keys
# * 'HashKeyElement'<~Hash>: info for primary key
# * 'AttributeType'<~String> - type of attribute
# * 'AttributeName'<~String> - name of attribute
# * 'RangeKeyElement'<~Hash>: optional, info for range key
# * 'AttributeType'<~String> - type of attribute
# * 'AttributeName'<~String> - name of attribute
# * 'AttributesToGet'<~Array> - optional attributes to return, defaults to all
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'Responses'<~Hash>:
# * 'table_name'<~Hash>:
# * 'Items'<~Array> - Matching items
# * 'ConsumedCapacityUnits'<~Float> - Capacity units used in read
# * 'UnprocessedKeys':<~Hash> - tables and keys in excess of per request limit, pass this to subsequent batch get for pseudo-pagination
def batch_get_item(request_items)
body = {
'RequestItems' => request_items
}
request(
:body => Fog::JSON.encode(body),
:headers => {'x-amz-target' => 'DynamoDB_20111205.BatchGetItem'},
:idempotent => true
)
end
end
end
end
end