Package | Description |
---|---|
com.amazonaws.services.dynamodb.datamodeling |
Modifier and Type | Method and Description |
---|---|
DynamoDBScanExpression |
DynamoDBScanExpression.withExclusiveStartKey(Key exclusiveStartKey)
Deprecated.
Sets the exclusive start key for this scan and returns a pointer to this
object for method-chaining.
|
DynamoDBScanExpression |
DynamoDBScanExpression.withLimit(Integer limit)
Deprecated.
Sets the limit of items to scan and returns a pointer to this object for
method-chaining.
|
Modifier and Type | Method and Description |
---|---|
int |
DynamoDBMapper.count(Class<?> clazz,
DynamoDBScanExpression scanExpression)
Deprecated.
Evaluates the specified scan expression and returns the count of matching
items, without returning any of the actual item data, using the default configuration.
|
int |
DynamoDBMapper.count(Class<?> clazz,
DynamoDBScanExpression scanExpression,
DynamoDBMapperConfig config)
Deprecated.
Evaluates the specified scan expression and returns the count of matching
items, without returning any of the actual item data.
|
<T> PaginatedScanList<T> |
DynamoDBMapper.scan(Class<T> clazz,
DynamoDBScanExpression scanExpression)
Deprecated.
Scans through an Amazon DynamoDB table and returns the matching results as
an unmodifiable list of instantiated objects, using the default configuration.
|
<T> PaginatedScanList<T> |
DynamoDBMapper.scan(Class<T> clazz,
DynamoDBScanExpression scanExpression,
DynamoDBMapperConfig config)
Deprecated.
Scans through an Amazon DynamoDB table and returns the matching results as
an unmodifiable list of instantiated objects.
|
<T> ScanResultPage<T> |
DynamoDBMapper.scanPage(Class<T> clazz,
DynamoDBScanExpression scanExpression)
Deprecated.
Scans through an Amazon DynamoDB table and returns a single page of matching
results.
|
<T> ScanResultPage<T> |
DynamoDBMapper.scanPage(Class<T> clazz,
DynamoDBScanExpression scanExpression,
DynamoDBMapperConfig config)
Deprecated.
Scans through an Amazon DynamoDB table and returns a single page of matching
results.
|
Copyright © 2014. All rights reserved.