I'm working on a spring boot application which queries a DynamoDB to retrieve a list of items. I want to use pagination and jump to a particular page.
Eg.
url: /items?pageno=10&pagesize=20
response: { items:[{item1}, {item2}, {item3}...{item10}], "page":3, "perPage": 10, "total": 4000}
Does dynamoDB support such pagination where one can jump to a particular page without iterating over the others.