List of usage examples for com.amazonaws.services.dynamodbv2.model GlobalSecondaryIndexDescription getItemCount
public Long getItemCount()
The number of items in the specified index.
From source file:org.xmlsh.aws.util.AWSDDBCommand.java
License:BSD License
private void writeGlobalSecondaryIndex(GlobalSecondaryIndexDescription index) throws XMLStreamException { startElement("global-secondary-index"); attribute("index-name", index.getIndexName()); attribute("index-size", index.getIndexSizeBytes()); attribute("index-status", index.getIndexStatus()); attribute("item-count", index.getItemCount()); writeKeySchemaList(index.getKeySchema()); writeProjection(index.getProjection()); writeProvisionedThroughput(index.getProvisionedThroughput()); endElement();//from ww w.java 2 s .c om }