if (element.getKeyType() != null) {
jsonWriter.key("KeyType").value(element.getKeyType());
}
jsonWriter.endObject(); // KeySchemaElement
}
jsonWriter.endArray(); //KeySchema
}
ProvisionedThroughputDescription provisionedThroughput = table.getProvisionedThroughput();
if (provisionedThroughput != null) {
jsonWriter.key("ProvisionedThroughput").object();
if (provisionedThroughput.getReadCapacityUnits() != null) {