com.github.dwhjames.awswrap.dynamodb.AmazonDynamoDBScalaMapper
Query a table by a hash key value, counting the results.
Query a table by a hash key value, counting the results.
The result will be the count of all items with the same hash key value, but varying range keys.
This method will internally make repeated query calls until the full result of the query has been retrieved.
a type that is viewable as an AttributeValue.
the hash key value to match.
an implicit object serializer.
the total number items that match the query in a future.
Query a table by a hash value and range condition, counting the results.
Query a table by a hash value and range condition, counting the results.
The result will be the count of all items with the same hash key value, and range keys that match the range condition.
This method will internally make repeated query calls until the full result of the query has been retrieved.
a type that is viewable as an AttributeValue.
an implicit object serializer.
the total number items that match the query in a future.
Query a table, counting the results.
Query a table, counting the results.
This is the most primitive overload, which takes a raw query request object.
This method will internally make repeated query calls until the full result of the query has been retrieved.
the query request object.
an implicit object serializer.
the total number items that match the query in a future.
Query a secondary index by a hash value and range condition, counting the results.
Query a secondary index by a hash value and range condition, counting the results.
This query targets a named secondary index. The index being used must be named, as well well at the name of the attribute used as a range key in the index. The result will be all the count of all items with the same hash key value, and range keys that match the range condition.
This method will internally make repeated query calls until the full result of the query has been retrieved.
a type that is viewable as an AttributeValue.
an implicit object serializer.
the total number items that match the query in a future.