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
LastEvaluatedKey
which is a pointer to the last item it read - In subsequent requests, you pass
LastEvaluatedKey
to theExclusiveStartKey
parameter, which tells DynamoDB where to begin reading - This logic keeps happening until there is no
LastEvaluatedKey
returned, which means you have read all the data available.
Relevant content
- asked 2 years ago
- asked a year ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a month ago
- AWS OFFICIALUpdated 3 years ago