Interface IDynamoHelper.IRowMapper<T>

Type Parameters:
T -
All Known Implementing Classes:
DemoApplication.ICustomRowMapper
Enclosing interface:
IDynamoHelper

public static interface IDynamoHelper.IRowMapper<T>
Example of a simple Mapper to convert from Dynamo Item to client POJO
     // This is a  mapper function which can be implemented by client to convert DynamoDB object to POJO
     public static class ICustomRowMapper implements IRowMapper {
  • Method Summary

    Modifier and Type
    Method
    Description
    map(com.amazonaws.services.dynamodbv2.document.Item item)
     
  • Method Details

    • map

      T map(com.amazonaws.services.dynamodbv2.document.Item item)