Ilya Rakitsin

Results 1 comments of Ilya Rakitsin

## Table is created with the following code: ``` try { dynamoDbService.getTableInfo(tableName); } catch (ResourceNotFoundException rnfe) { try { Future table = dynamoDbService.createTable(tableName, new AttributeDefinition().withAttributeName("id").withAttributeType(ScalarAttributeType.S), new AttributeDefinition().withAttributeName("timestamp").withAttributeType(ScalarAttributeType.S), rcu, wcu); table.get();...