Currently the list operation will only return 1MB of items, and not handle/paginate further requests.
It should return a finite number of results, and offer pagination on the rest.
From the DynamoDB scan API docs:
If the total number of scanned items exceeds the 1MB limit, the scan stops and results are returned to the user with a LastEvaluatedKey to continue the scan in a subsequent operation. The results also include the number of items exceeding the limit.
Currently the list operation will only return 1MB of items, and not handle/paginate further requests.
It should return a finite number of results, and offer pagination on the rest.
From the DynamoDB scan API docs: