Class BatchGetItemSpec
- java.lang.Object
-
- com.amazonaws.services.dynamodbv2.document.spec.BatchGetItemSpec
-
public class BatchGetItemSpec extends Object
Full parameter specification for the BatchGetItem API.
-
-
Constructor Summary
Constructors Constructor Description BatchGetItemSpec()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProgressListener
getProgressListener()
T
getRequest()
Internal method.RequestMetricCollector
getRequestMetricCollector()
String
getReturnConsumedCapacity()
Collection<TableKeysAndAttributes>
getTableKeysAndAttributes()
Map<String,KeysAndAttributes>
getUnprocessedKeys()
void
setProgressListener(ProgressListener progressListener)
void
setRequestMetricCollector(RequestMetricCollector requestMetricCollector)
BatchGetItemSpec
withProgressListener(ProgressListener progressListener)
BatchGetItemSpec
withRequestMetricCollector(RequestMetricCollector requestMetricCollector)
BatchGetItemSpec
withReturnConsumedCapacity(ReturnConsumedCapacity capacity)
BatchGetItemSpec
withTableKeyAndAttributes(TableKeysAndAttributes... tableKeyAndAttributes)
BatchGetItemSpec
withUnprocessedKeys(Map<String,KeysAndAttributes> unprocessedKeys)
-
-
-
Method Detail
-
getTableKeysAndAttributes
public Collection<TableKeysAndAttributes> getTableKeysAndAttributes()
-
withTableKeyAndAttributes
public BatchGetItemSpec withTableKeyAndAttributes(TableKeysAndAttributes... tableKeyAndAttributes)
-
getReturnConsumedCapacity
public String getReturnConsumedCapacity()
-
withReturnConsumedCapacity
public BatchGetItemSpec withReturnConsumedCapacity(ReturnConsumedCapacity capacity)
-
withProgressListener
public BatchGetItemSpec withProgressListener(ProgressListener progressListener)
-
withRequestMetricCollector
public BatchGetItemSpec withRequestMetricCollector(RequestMetricCollector requestMetricCollector)
-
getUnprocessedKeys
public Map<String,KeysAndAttributes> getUnprocessedKeys()
-
withUnprocessedKeys
public BatchGetItemSpec withUnprocessedKeys(Map<String,KeysAndAttributes> unprocessedKeys)
-
getRequest
public T getRequest()
Internal method. Not meant to be called directly. May change without notice.
-
getProgressListener
public ProgressListener getProgressListener()
-
setProgressListener
public void setProgressListener(ProgressListener progressListener)
-
getRequestMetricCollector
public RequestMetricCollector getRequestMetricCollector()
-
setRequestMetricCollector
public void setRequestMetricCollector(RequestMetricCollector requestMetricCollector)
-
-