List of usage examples for com.amazonaws.services.dynamodbv2.model ItemCollectionMetrics getItemCollectionKey
public java.util.Map<String, AttributeValue> getItemCollectionKey()
The partition key value of the item collection.
From source file:org.xmlsh.aws.util.AWSDDBCommand.java
License:BSD License
protected void writeItemCollectionMetrics(ItemCollectionMetrics itemCollectionMetrics) throws XMLStreamException, IOException { startElement("item-collection-metrics"); writeAttrNameValue("item-collection-key", itemCollectionMetrics.getItemCollectionKey()); for (Double r : itemCollectionMetrics.getSizeEstimateRangeGB()) { super.startElement("size"); attribute("value", r); endElement();/*from w ww. jav a 2 s . c om*/ } endElement(); }