// get information
String tableName = request.getTableName();
// Check to make sure table with same name doesn't exist
if (this.tables.containsKey(tableName)) {
throw new ResourceInUseException("The table you're currently trying to create (" + tableName + ") is already available.");
}
// Add table to map, array
Table table = new Table(tableName, request.getKeySchema(), request.getProvisionedThroughput());
this.tables.put(tableName, table);