Package | Description |
---|---|
com.amazonaws.services.dynamodb.datamodeling |
Modifier and Type | Method and Description |
---|---|
DynamoDBQueryExpression |
DynamoDBQueryExpression.withConsistentRead(boolean consistentRead)
Deprecated.
Sets whether this query uses consistent reads and returns a pointer to
this object for method-chaining.
|
DynamoDBQueryExpression |
DynamoDBQueryExpression.withExclusiveStartKey(Key exclusiveStartKey)
Deprecated.
Sets the exclusive start key for this query and returns a pointer to this
object for method-chaining.
|
DynamoDBQueryExpression |
DynamoDBQueryExpression.withHashKeyValue(AttributeValue hashKeyValue)
Deprecated.
Sets the hash key value for this query to match and returns a pointer to
this object for method-chaining.
|
DynamoDBQueryExpression |
DynamoDBQueryExpression.withLimit(Integer limit)
Deprecated.
Sets the limit of items to return from this query and returns a pointer to this
object for method-chaining.
|
DynamoDBQueryExpression |
DynamoDBQueryExpression.withRangeKeyCondition(Condition rangeKeyCondition)
Deprecated.
Sets the range key condition for this query and returns a pointer to this
object for method-chaining.
|
DynamoDBQueryExpression |
DynamoDBQueryExpression.withScanIndexForward(boolean scanIndexForward)
Deprecated.
Sets whether this query scans forward and returns a pointer to this
object for method-chaining.
|
Modifier and Type | Method and Description |
---|---|
int |
DynamoDBMapper.count(Class<?> clazz,
DynamoDBQueryExpression queryExpression)
Deprecated.
Evaluates the specified query 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,
DynamoDBQueryExpression queryExpression,
DynamoDBMapperConfig config)
Deprecated.
Evaluates the specified query expression and returns the count of
matching items, without returning any of the actual item data.
|
<T> PaginatedQueryList<T> |
DynamoDBMapper.query(Class<T> clazz,
DynamoDBQueryExpression queryExpression)
Deprecated.
Queries an Amazon DynamoDB table and returns the matching results as an
unmodifiable list of instantiated objects, using the default
configuration.
|
<T> PaginatedQueryList<T> |
DynamoDBMapper.query(Class<T> clazz,
DynamoDBQueryExpression queryExpression,
DynamoDBMapperConfig config)
Deprecated.
Queries an Amazon DynamoDB table and returns the matching results as an
unmodifiable list of instantiated objects.
|
<T> QueryResultPage<T> |
DynamoDBMapper.queryPage(Class<T> clazz,
DynamoDBQueryExpression queryExpression)
Deprecated.
Queries an Amazon DynamoDB table and returns a single page of matching
results.
|
<T> QueryResultPage<T> |
DynamoDBMapper.queryPage(Class<T> clazz,
DynamoDBQueryExpression queryExpression,
DynamoDBMapperConfig config)
Deprecated.
Queries an Amazon DynamoDB table and returns a single page of matching
results.
|
Copyright © 2014. All rights reserved.