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

Fix for ScanFilter parameters

'AttributeValueList' needs to be an array of 'AttributeValue' and not Hash.
This commit is contained in:
Nawaid Shamim 2015-02-20 14:15:47 +00:00
parent 09c705fb64
commit 5a5817f87d

View file

@ -13,7 +13,8 @@ module Fog
# * 'Limit'<~Integer> - limit of total items to return
# * 'ScanFilter'<~Hash>: value to compare against
# * attribute_name<~Hash>:
# * 'AttributeValueList'<~Hash>: one or more values to compare against
# * 'AttributeValueList'<~Array>: one or more values to compare against
# * 'AttributeValue'<~Hash> - formated as {type => value}
# * 'ComparisonOperator'<~String>: comparison operator to use with attribute value list, in %w{BETWEEN BEGINS_WITH EQ LE LT GE GT}
# * 'ScanIndexForward'<~Boolean>: Whether to scan from start or end of index, defaults to start
# * 'ExclusiveStartKey'<~Hash>: Key to start listing from, can be taken from LastEvaluatedKey in response