1 réponse
- Le plus récent
- Le plus de votes
- La plupart des commentaires
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.
Contenus pertinents
- demandé il y a un an
- demandé il y a un an
- demandé il y a 7 mois
- demandé il y a 7 mois
- AWS OFFICIELA mis à jour il y a 3 ans
