jsonWriter.key("TableStatus").value(table.getTableStatus());
jsonWriter.key("CreationDateTime").value(table.getCreationDateTime());
KeySchema keySchema = table.getKeySchema();
if (keySchema != null) {
jsonWriter.key("KeySchema").object();
KeySchemaElement hashKeyElement = keySchema.getHashKeyElement();
if (hashKeyElement != null) {
jsonWriter.key("HashKeyElement").object();
if (hashKeyElement.getAttributeName() != null) {
jsonWriter.key("AttributeName").value(hashKeyElement.getAttributeName());