Package | Description |
---|---|
com.amazonaws.services.dynamodbv2.datamodeling |
Modifier and Type | Method and Description |
---|---|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.addExpressionAttributeNamesEntry(String key,
String value)
One or more substitution variables for simplifying complex expressions.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.addExpressionAttributeValuesEntry(String key,
AttributeValue value)
One or more values that can be substituted in an expression.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.clearExpressionAttributeNamesEntries()
Removes all the entries added into ExpressionAttributeNames.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.clearExpressionAttributeValuesEntries()
Removes all the entries added into ExpressionAttributeValues.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withConditionalOperator(ConditionalOperator conditionalOperator)
Sets the logical operator on the query filter conditions.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withConditionalOperator(String conditionalOperator)
Sets the logical operator on the query filter conditions.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withConsistentRead(boolean consistentRead)
Sets whether this query uses consistent reads and returns a pointer to
this object for method-chaining.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withExclusiveStartKey(Map<String,AttributeValue> exclusiveStartKey)
Sets the exclusive start key for this query and returns a pointer to this
object for method-chaining.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withExpressionAttributeNames(Map<String,String> expressionAttributeNames)
One or more substitution variables for simplifying complex expressions.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withExpressionAttributeValues(Map<String,AttributeValue> expressionAttributeValues)
One or more values that can be substituted in an expression.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withFilterExpression(String filterExpression)
Evaluates the query results and returns only the desired values.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withHashKeyValues(T hashKObject)
Sets the hash key value(s) for this query.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withIndexName(String indexName)
Sets the name of the index to be used by this query.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withKeyConditionExpression(String keyConditionExpression) |
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withLimit(Integer limit)
Sets the maximum number of items to retrieve in each service request to
DynamoDB and returns a pointer to this object for method-chaining.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withProjectionExpression(String projectionExpression)
A string that identifies one or more attributes to retrieve from the
table.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withQueryFilter(Map<String,Condition> queryFilter)
Sets the query filter applied on this query.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withQueryFilterEntry(String attributeName,
Condition condition)
Adds a new condition to the the query filter.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withRangeKeyCondition(String rangeKeyAttributeName,
Condition rangeKeyCondition)
Sets one range key condition for this query, using the attribute name of
the range key.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withRangeKeyConditions(Map<String,Condition> rangeKeyConditions)
Sets the range key condition for this query.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withReturnConsumedCapacity(ReturnConsumedCapacity returnConsumedCapacity)
A value that if set to
TOTAL , the response includes
ConsumedCapacity data for tables and indexes. |
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withReturnConsumedCapacity(String returnConsumedCapacity)
A value that if set to
TOTAL , the response includes
ConsumedCapacity data for tables and indexes. |
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withScanIndexForward(boolean scanIndexForward)
Sets whether this query scans forward and returns a pointer to this
object for method-chaining.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withSelect(Select select)
The attributes to be returned in the result.
|
DynamoDBQueryExpression<T> |
DynamoDBQueryExpression.withSelect(String select)
The attributes to be returned in the result.
|
Modifier and Type | Method and Description |
---|---|
<T> int |
IDynamoDBMapper.count(Class<T> clazz,
DynamoDBQueryExpression<T> queryExpression)
Evaluates the specified query expression and returns the count of matching items, without
returning any of the actual item data, using the default configuration.
|
<T> int |
AbstractDynamoDBMapper.count(Class<T> clazz,
DynamoDBQueryExpression<T> queryExpression) |
<T> int |
IDynamoDBMapper.count(Class<T> clazz,
DynamoDBQueryExpression<T> queryExpression,
DynamoDBMapperConfig config)
Evaluates the specified query expression and returns the count of matching items, without
returning any of the actual item data.
|
<T> int |
AbstractDynamoDBMapper.count(Class<T> clazz,
DynamoDBQueryExpression<T> queryExpression,
DynamoDBMapperConfig config) |
<T> int |
DynamoDBMapper.count(Class<T> clazz,
DynamoDBQueryExpression<T> queryExpression,
DynamoDBMapperConfig config) |
int |
DynamoDBTableMapper.count(DynamoDBQueryExpression<T> queryExpression)
Evaluates the specified query expression and returns the count of matching
items, without returning any of the actual item data
|
protected <T> QueryRequest |
DynamoDBMapper.createQueryRequestFromExpression(Class<T> clazz,
DynamoDBQueryExpression<T> xpress,
DynamoDBMapperConfig config) |
<T> PaginatedQueryList<T> |
IDynamoDBMapper.query(Class<T> clazz,
DynamoDBQueryExpression<T> queryExpression)
Queries an Amazon DynamoDB table and returns the matching results as an unmodifiable list of
instantiated objects, using the default configuration.
|
<T> PaginatedQueryList<T> |
AbstractDynamoDBMapper.query(Class<T> clazz,
DynamoDBQueryExpression<T> queryExpression) |
<T> PaginatedQueryList<T> |
IDynamoDBMapper.query(Class<T> clazz,
DynamoDBQueryExpression<T> queryExpression,
DynamoDBMapperConfig config)
Queries an Amazon DynamoDB table and returns the matching results as an unmodifiable list of
instantiated objects.
|
<T> PaginatedQueryList<T> |
AbstractDynamoDBMapper.query(Class<T> clazz,
DynamoDBQueryExpression<T> queryExpression,
DynamoDBMapperConfig config) |
<T> PaginatedQueryList<T> |
DynamoDBMapper.query(Class<T> clazz,
DynamoDBQueryExpression<T> queryExpression,
DynamoDBMapperConfig config) |
PaginatedQueryList<T> |
DynamoDBTableMapper.query(DynamoDBQueryExpression<T> queryExpression)
Queries an Amazon DynamoDB table and returns the matching results as an
unmodifiable list of instantiated objects.
|
<T> QueryResultPage<T> |
IDynamoDBMapper.queryPage(Class<T> clazz,
DynamoDBQueryExpression<T> queryExpression)
Queries an Amazon DynamoDB table and returns a single page of matching results.
|
<T> QueryResultPage<T> |
AbstractDynamoDBMapper.queryPage(Class<T> clazz,
DynamoDBQueryExpression<T> queryExpression) |
<T> QueryResultPage<T> |
IDynamoDBMapper.queryPage(Class<T> clazz,
DynamoDBQueryExpression<T> queryExpression,
DynamoDBMapperConfig config)
Queries an Amazon DynamoDB table and returns a single page of matching results.
|
<T> QueryResultPage<T> |
AbstractDynamoDBMapper.queryPage(Class<T> clazz,
DynamoDBQueryExpression<T> queryExpression,
DynamoDBMapperConfig config) |
<T> QueryResultPage<T> |
DynamoDBMapper.queryPage(Class<T> clazz,
DynamoDBQueryExpression<T> queryExpression,
DynamoDBMapperConfig config) |
QueryResultPage<T> |
DynamoDBTableMapper.queryPage(DynamoDBQueryExpression<T> queryExpression)
Queries an Amazon DynamoDB table and returns a single page of matching
results.
|
Copyright © 2023. All rights reserved.