Package | Description |
---|---|
com.amazonaws.services.dynamodbv2 |
Synchronous and asynchronous client classes for accessing AmazonDynamoDBv2.
|
com.amazonaws.services.dynamodbv2.datamodeling | |
com.amazonaws.services.dynamodbv2.model |
Classes modeling the various types represented by AmazonDynamoDBv2.
|
Modifier and Type | Method and Description |
---|---|
ScanResult |
AmazonDynamoDB.scan(ScanRequest scanRequest)
The Scan operation returns one or more items and item
attributes by accessing every item in a table or a secondary index.
|
ScanResult |
AmazonDynamoDBClient.scan(ScanRequest scanRequest)
The Scan operation returns one or more items and item
attributes by accessing every item in a table or a secondary index.
|
Future<ScanResult> |
AmazonDynamoDBAsyncClient.scanAsync(ScanRequest scanRequest)
The Scan operation returns one or more items and item
attributes by accessing every item in a table or a secondary index.
|
Future<ScanResult> |
AmazonDynamoDBAsync.scanAsync(ScanRequest scanRequest)
The Scan operation returns one or more items and item
attributes by accessing every item in a table or a secondary index.
|
Future<ScanResult> |
AmazonDynamoDBAsyncClient.scanAsync(ScanRequest scanRequest,
AsyncHandler<ScanRequest,ScanResult> asyncHandler)
The Scan operation returns one or more items and item
attributes by accessing every item in a table or a secondary index.
|
Future<ScanResult> |
AmazonDynamoDBAsync.scanAsync(ScanRequest scanRequest,
AsyncHandler<ScanRequest,ScanResult> asyncHandler)
The Scan operation returns one or more items and item
attributes by accessing every item in a table or a secondary index.
|
Modifier and Type | Method and Description |
---|---|
Future<ScanResult> |
AmazonDynamoDBAsyncClient.scanAsync(ScanRequest scanRequest,
AsyncHandler<ScanRequest,ScanResult> asyncHandler)
The Scan operation returns one or more items and item
attributes by accessing every item in a table or a secondary index.
|
Future<ScanResult> |
AmazonDynamoDBAsync.scanAsync(ScanRequest scanRequest,
AsyncHandler<ScanRequest,ScanResult> asyncHandler)
The Scan operation returns one or more items and item
attributes by accessing every item in a table or a secondary index.
|
Constructor and Description |
---|
PaginatedScanList(DynamoDBMapper mapper,
Class<T> clazz,
AmazonDynamoDB dynamo,
ScanRequest scanRequest,
ScanResult scanResult,
DynamoDBMapperConfig.PaginationLoadingStrategy paginationLoadingStrategy,
DynamoDBMapperConfig config) |
Constructor and Description |
---|
ParallelScanTask(DynamoDBMapper mapper,
AmazonDynamoDB dynamo,
List<ScanRequest> parallelScanRequests)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
ScanRequest |
ScanRequest.addExclusiveStartKeyEntry(String key,
AttributeValue value)
The primary key of the first item that this operation will evaluate.
|
ScanRequest |
ScanRequest.addExpressionAttributeNamesEntry(String key,
String value)
One or more substitution tokens for attribute names in an expression.
|
ScanRequest |
ScanRequest.addExpressionAttributeValuesEntry(String key,
AttributeValue value)
One or more values that can be substituted in an expression.
|
ScanRequest |
ScanRequest.addScanFilterEntry(String key,
Condition value)
|
ScanRequest |
ScanRequest.clearExclusiveStartKeyEntries()
Removes all the entries added into ExclusiveStartKey.
|
ScanRequest |
ScanRequest.clearExpressionAttributeNamesEntries()
Removes all the entries added into ExpressionAttributeNames.
|
ScanRequest |
ScanRequest.clearExpressionAttributeValuesEntries()
Removes all the entries added into ExpressionAttributeValues.
|
ScanRequest |
ScanRequest.clearScanFilterEntries()
Removes all the entries added into ScanFilter.
|
ScanRequest |
ScanRequest.clone() |
ScanRequest |
ScanRequest.withAttributesToGet(Collection<String> attributesToGet)
|
ScanRequest |
ScanRequest.withAttributesToGet(String... attributesToGet)
|
ScanRequest |
ScanRequest.withConditionalOperator(ConditionalOperator conditionalOperator)
|
ScanRequest |
ScanRequest.withConditionalOperator(String conditionalOperator)
|
ScanRequest |
ScanRequest.withExclusiveStartKey(Map.Entry<String,AttributeValue> hashKey,
Map.Entry<String,AttributeValue> rangeKey)
The primary key of the first item that this operation will evaluate.
|
ScanRequest |
ScanRequest.withExclusiveStartKey(Map<String,AttributeValue> exclusiveStartKey)
The primary key of the first item that this operation will evaluate.
|
ScanRequest |
ScanRequest.withExpressionAttributeNames(Map<String,String> expressionAttributeNames)
One or more substitution tokens for attribute names in an expression.
|
ScanRequest |
ScanRequest.withExpressionAttributeValues(Map<String,AttributeValue> expressionAttributeValues)
One or more values that can be substituted in an expression.
|
ScanRequest |
ScanRequest.withFilterExpression(String filterExpression)
A string that contains conditions that DynamoDB applies after the
Scan operation, but before the data is returned to you.
|
ScanRequest |
ScanRequest.withIndexName(String indexName)
The name of a secondary index to scan.
|
ScanRequest |
ScanRequest.withLimit(Integer limit)
The maximum number of items to evaluate (not necessarily the number of
matching items).
|
ScanRequest |
ScanRequest.withProjectionExpression(String projectionExpression)
A string that identifies one or more attributes to retrieve from the
specified table or index.
|
ScanRequest |
ScanRequest.withReturnConsumedCapacity(ReturnConsumedCapacity returnConsumedCapacity)
A value that if set to
TOTAL , the response includes
ConsumedCapacity data for tables and indexes. |
ScanRequest |
ScanRequest.withReturnConsumedCapacity(String returnConsumedCapacity)
A value that if set to
TOTAL , the response includes
ConsumedCapacity data for tables and indexes. |
ScanRequest |
ScanRequest.withScanFilter(Map<String,Condition> scanFilter)
|
ScanRequest |
ScanRequest.withSegment(Integer segment)
For a parallel Scan request, Segment identifies an
individual segment to be scanned by an application worker.
|
ScanRequest |
ScanRequest.withSelect(Select select)
The attributes to be returned in the result.
|
ScanRequest |
ScanRequest.withSelect(String select)
The attributes to be returned in the result.
|
ScanRequest |
ScanRequest.withTableName(String tableName)
The name of the table containing the requested items; or, if you
provide
IndexName , the name of the table to which that
index belongs. |
ScanRequest |
ScanRequest.withTotalSegments(Integer totalSegments)
For a parallel Scan request, TotalSegments represents
the total number of segments into which the Scan operation will
be divided.
|
Copyright © 2015. All rights reserved.