java - Fetching All Items with DynamoDBMapper -
i want of records dynamo db table , have them mapped array of pojos; pojo simple , annotated.
dynamodbmapper appears object fetch acquire records , deserialize them pojos. perhaps using paginatedscanlist() walk through entire table.
mapper's scan() , paginatedscanlist() methods both require dynamodbscanexpression parameter. dynamodbscanexpression used select of records in table?
you can pass new dynamodbscanexpression()
scan method.:
mapper.scan(myobject.class, new dynamodbscanexpression());
or use new document api
Comments
Post a Comment