Class DynamoDbClient


  • public class DynamoDbClient
    extends Object
    • Method Detail

      • createTable

        public void createTable​(Class<?> clazz,
                                String region)
        Create a table in DynamoDB for the given class. Use default read/write capacity of 1. Use default AWS credentials "key" and "secret-key".
      • createTable

        public void createTable​(Class<?> clazz,
                                String region,
                                String accessKey,
                                String secretKey,
                                Long readCapacityUnits,
                                Long writeCapacityUnits)
        Create a table in DynamoDB for the given class.