Class DynamoDBMapper.FailedBatch
- java.lang.Object
-
- com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMapper.FailedBatch
-
- Enclosing class:
- DynamoDBMapper
public static class DynamoDBMapper.FailedBatch extends Object
The return type of batchWrite, batchDelete and batchSave. It contains the information about the unprocessed items and the exception causing the failure.
-
-
Constructor Summary
Constructors Constructor Description FailedBatch()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Exception
getException()
Map<String,List<WriteRequest>>
getUnprocessedItems()
void
setException(Exception excetpion)
void
setUnprocessedItems(Map<String,List<WriteRequest>> unprocessedItems)
-
-
-
Method Detail
-
setUnprocessedItems
public void setUnprocessedItems(Map<String,List<WriteRequest>> unprocessedItems)
-
getUnprocessedItems
public Map<String,List<WriteRequest>> getUnprocessedItems()
-
setException
public void setException(Exception excetpion)
-
getException
public Exception getException()
-
-