Class BatchGetItemOutcome
- java.lang.Object
-
- com.amazonaws.services.dynamodbv2.document.BatchGetItemOutcome
-
public class BatchGetItemOutcome extends Object
The outcome of a batch get-item operation from DynamoDB.
-
-
Constructor Summary
Constructors Constructor Description BatchGetItemOutcome(BatchGetItemResult result)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BatchGetItemResult
getBatchGetItemResult()
Returns a non-null low-level result returned from the server side.Map<String,List<Item>>
getTableItems()
Returns a map of table name to the list of retrieved itemsMap<String,KeysAndAttributes>
getUnprocessedKeys()
Convenient method to return the low-level unprocessed keys.String
toString()
-
-
-
Constructor Detail
-
BatchGetItemOutcome
public BatchGetItemOutcome(BatchGetItemResult result)
- Parameters:
result
- the low-level result; must not be null
-
-
Method Detail
-
getTableItems
public Map<String,List<Item>> getTableItems()
Returns a map of table name to the list of retrieved items
-
getUnprocessedKeys
public Map<String,KeysAndAttributes> getUnprocessedKeys()
Convenient method to return the low-level unprocessed keys.
-
getBatchGetItemResult
public BatchGetItemResult getBatchGetItemResult()
Returns a non-null low-level result returned from the server side.
-
-