public class PutRecordBatchResult extends Object implements Serializable, Cloneable
Contains the output of PutRecordBatch.
| Constructor and Description |
|---|
PutRecordBatchResult() |
| Modifier and Type | Method and Description |
|---|---|
PutRecordBatchResult |
clone() |
boolean |
equals(Object obj) |
Integer |
getFailedPutCount()
The number of unsuccessfully written records.
|
List<PutRecordBatchResponseEntry> |
getRequestResponses()
The results for the individual records.
|
int |
hashCode() |
void |
setFailedPutCount(Integer failedPutCount)
The number of unsuccessfully written records.
|
void |
setRequestResponses(Collection<PutRecordBatchResponseEntry> requestResponses)
The results for the individual records.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
PutRecordBatchResult |
withFailedPutCount(Integer failedPutCount)
The number of unsuccessfully written records.
|
PutRecordBatchResult |
withRequestResponses(Collection<PutRecordBatchResponseEntry> requestResponses)
The results for the individual records.
|
PutRecordBatchResult |
withRequestResponses(PutRecordBatchResponseEntry... requestResponses)
The results for the individual records.
|
public void setFailedPutCount(Integer failedPutCount)
The number of unsuccessfully written records.
failedPutCount - The number of unsuccessfully written records.public Integer getFailedPutCount()
The number of unsuccessfully written records.
public PutRecordBatchResult withFailedPutCount(Integer failedPutCount)
The number of unsuccessfully written records.
failedPutCount - The number of unsuccessfully written records.public List<PutRecordBatchResponseEntry> getRequestResponses()
The results for the individual records. The index of each element matches the same index in which records were sent.
public void setRequestResponses(Collection<PutRecordBatchResponseEntry> requestResponses)
The results for the individual records. The index of each element matches the same index in which records were sent.
requestResponses - The results for the individual records. The index of each element
matches the same index in which records were sent.public PutRecordBatchResult withRequestResponses(PutRecordBatchResponseEntry... requestResponses)
The results for the individual records. The index of each element matches the same index in which records were sent.
NOTE: This method appends the values to the existing list (if
any). Use setRequestResponses(java.util.Collection) or
withRequestResponses(java.util.Collection) if you want to
override the existing values.
requestResponses - The results for the individual records. The index of each element
matches the same index in which records were sent.public PutRecordBatchResult withRequestResponses(Collection<PutRecordBatchResponseEntry> requestResponses)
The results for the individual records. The index of each element matches the same index in which records were sent.
requestResponses - The results for the individual records. The index of each element
matches the same index in which records were sent.public String toString()
toString in class ObjectObject.toString()public PutRecordBatchResult clone()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.