public boolean isTableExist(String tableName) { try { TableDescription tableDescription = dynamoDB.getTable(tableName).describe(); System.out.println('Table description: ' + tableDescription.getTableStatus()); return true; } catch (com.amazonaws.services.dynamodbv2.model.ResourceNotFoundException rnfe) { System.out.println("Table does not exist"); } return false; }
Follow me in Twitter
https://twitter.com/muthupandian_in
Top comments (0)