1 Answer
- Newest
- Most votes
- Most comments
1
querystring parameters changes or do i have to control
Im not sure on which querystring params you are referring to but pagination works like this:
- Request up to 1MB of data
- DynamoDB returns 1MB and provides you with a
LastEvaluatedKeywhich is a pointer to the last item it read - In subsequent requests, you pass
LastEvaluatedKeyto theExclusiveStartKeyparameter, which tells DynamoDB where to begin reading - This logic keeps happening until there is no
LastEvaluatedKeyreturned, which means you have read all the data available.
Relevant content
- asked 3 years ago
- asked 3 years ago
- AWS OFFICIALUpdated 3 years ago
