com.amazonaws.services.dynamodb.model
Class BatchGetItemResult

java.lang.Object
  extended by com.amazonaws.services.dynamodb.model.BatchGetItemResult

public class BatchGetItemResult
extends Object

Batch Get Item Result


Constructor Summary
BatchGetItemResult()
           
 
Method Summary
 boolean equals(Object obj)
           
 Map<String,BatchResponse> getResponses()
          Table names and the respective item attributes from the tables.
 Map<String,KeysAndAttributes> getUnprocessedKeys()
          Contains a map of tables and their respective keys that were not processed with the current response, possibly due to reaching a limit on the response size.
 int hashCode()
           
 void setResponses(Map<String,BatchResponse> responses)
          Table names and the respective item attributes from the tables.
 void setUnprocessedKeys(Map<String,KeysAndAttributes> unprocessedKeys)
          Contains a map of tables and their respective keys that were not processed with the current response, possibly due to reaching a limit on the response size.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 BatchGetItemResult withResponses(Map<String,BatchResponse> responses)
          Table names and the respective item attributes from the tables.
 BatchGetItemResult withUnprocessedKeys(Map<String,KeysAndAttributes> unprocessedKeys)
          Contains a map of tables and their respective keys that were not processed with the current response, possibly due to reaching a limit on the response size.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

BatchGetItemResult

public BatchGetItemResult()
Method Detail

getResponses

public Map<String,BatchResponse> getResponses()
Table names and the respective item attributes from the tables.

Returns:
Table names and the respective item attributes from the tables.

setResponses

public void setResponses(Map<String,BatchResponse> responses)
Table names and the respective item attributes from the tables.

Parameters:
responses - Table names and the respective item attributes from the tables.

withResponses

public BatchGetItemResult withResponses(Map<String,BatchResponse> responses)
Table names and the respective item attributes from the tables.

Returns a reference to this object so that method calls can be chained together.

Parameters:
responses - Table names and the respective item attributes from the tables.
Returns:
A reference to this updated object so that method calls can be chained together.

getUnprocessedKeys

public Map<String,KeysAndAttributes> getUnprocessedKeys()
Contains a map of tables and their respective keys that were not processed with the current response, possibly due to reaching a limit on the response size. The UnprocessedKeys value is in the same form as a RequestItems parameter (so the value can be provided directly to a subsequent BatchGetItem operation). For more information, see the above RequestItems parameter.

Constraints:
Length: 1 - 100

Returns:
Contains a map of tables and their respective keys that were not processed with the current response, possibly due to reaching a limit on the response size. The UnprocessedKeys value is in the same form as a RequestItems parameter (so the value can be provided directly to a subsequent BatchGetItem operation). For more information, see the above RequestItems parameter.

setUnprocessedKeys

public void setUnprocessedKeys(Map<String,KeysAndAttributes> unprocessedKeys)
Contains a map of tables and their respective keys that were not processed with the current response, possibly due to reaching a limit on the response size. The UnprocessedKeys value is in the same form as a RequestItems parameter (so the value can be provided directly to a subsequent BatchGetItem operation). For more information, see the above RequestItems parameter.

Constraints:
Length: 1 - 100

Parameters:
unprocessedKeys - Contains a map of tables and their respective keys that were not processed with the current response, possibly due to reaching a limit on the response size. The UnprocessedKeys value is in the same form as a RequestItems parameter (so the value can be provided directly to a subsequent BatchGetItem operation). For more information, see the above RequestItems parameter.

withUnprocessedKeys

public BatchGetItemResult withUnprocessedKeys(Map<String,KeysAndAttributes> unprocessedKeys)
Contains a map of tables and their respective keys that were not processed with the current response, possibly due to reaching a limit on the response size. The UnprocessedKeys value is in the same form as a RequestItems parameter (so the value can be provided directly to a subsequent BatchGetItem operation). For more information, see the above RequestItems parameter.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Length: 1 - 100

Parameters:
unprocessedKeys - Contains a map of tables and their respective keys that were not processed with the current response, possibly due to reaching a limit on the response size. The UnprocessedKeys value is in the same form as a RequestItems parameter (so the value can be provided directly to a subsequent BatchGetItem operation). For more information, see the above RequestItems parameter.
Returns:
A reference to this updated object so that method calls can be chained together.

toString

public String toString()
Returns a string representation of this object; useful for testing and debugging.

Overrides:
toString in class Object
Returns:
A string representation of this object.
See Also:
Object.toString()

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.