Uses of Class
com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBQueryExpression
Packages that use DynamoDBQueryExpression
-
Uses of DynamoDBQueryExpression in com.amazonaws.services.dynamodbv2.datamodeling
Methods in com.amazonaws.services.dynamodbv2.datamodeling that return DynamoDBQueryExpressionModifier and TypeMethodDescriptionDynamoDBQueryExpression.addExpressionAttributeNamesEntry
(String key, String value) One or more substitution variables for simplifying complex expressions.DynamoDBQueryExpression.addExpressionAttributeValuesEntry
(String key, AttributeValue value) One or more values that can be substituted in an expression.DynamoDBQueryExpression.clearExpressionAttributeNamesEntries()
Removes all the entries added into ExpressionAttributeNames.DynamoDBQueryExpression.clearExpressionAttributeValuesEntries()
Removes all the entries added into ExpressionAttributeValues.DynamoDBQueryExpression.withConditionalOperator
(ConditionalOperator conditionalOperator) Sets the logical operator on the query filter conditions.DynamoDBQueryExpression.withConditionalOperator
(String conditionalOperator) Sets the logical operator on the query filter conditions.DynamoDBQueryExpression.withConsistentRead
(boolean consistentRead) Sets whether this query uses consistent reads and returns a pointer to this object for method-chaining.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.withExpressionAttributeNames
(Map<String, String> expressionAttributeNames) One or more substitution variables for simplifying complex expressions.DynamoDBQueryExpression.withExpressionAttributeValues
(Map<String, AttributeValue> expressionAttributeValues) One or more values that can be substituted in an expression.DynamoDBQueryExpression.withFilterExpression
(String filterExpression) Evaluates the query results and returns only the desired values.DynamoDBQueryExpression.withHashKeyValues
(T hashKObject) Sets the hash key value(s) for this query.DynamoDBQueryExpression.withIndexName
(String indexName) Sets the name of the index to be used by this query.DynamoDBQueryExpression.withKeyConditionExpression
(String keyConditionExpression) 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.withProjectionExpression
(String projectionExpression) A string that identifies one or more attributes to retrieve from the table.DynamoDBQueryExpression.withQueryFilter
(Map<String, Condition> queryFilter) Sets the query filter applied on this query.DynamoDBQueryExpression.withQueryFilterEntry
(String attributeName, Condition condition) Adds a new condition to the the query filter.DynamoDBQueryExpression.withRangeKeyCondition
(String rangeKeyAttributeName, Condition rangeKeyCondition) Sets one range key condition for this query, using the attribute name of the range key.DynamoDBQueryExpression.withRangeKeyConditions
(Map<String, Condition> rangeKeyConditions) Sets the range key condition for this query.DynamoDBQueryExpression.withReturnConsumedCapacity
(ReturnConsumedCapacity returnConsumedCapacity) A value that if set toTOTAL
, the response includes ConsumedCapacity data for tables and indexes.DynamoDBQueryExpression.withReturnConsumedCapacity
(String returnConsumedCapacity) A value that if set toTOTAL
, the response includes ConsumedCapacity data for tables and indexes.DynamoDBQueryExpression.withScanIndexForward
(boolean scanIndexForward) Sets whether this query scans forward and returns a pointer to this object for method-chaining.DynamoDBQueryExpression.withSelect
(Select select) The attributes to be returned in the result.DynamoDBQueryExpression.withSelect
(String select) The attributes to be returned in the result.Methods in com.amazonaws.services.dynamodbv2.datamodeling with parameters of type DynamoDBQueryExpressionModifier and TypeMethodDescription<T> int
AbstractDynamoDBMapper.count
(Class<T> clazz, DynamoDBQueryExpression<T> queryExpression) <T> int
AbstractDynamoDBMapper.count
(Class<T> clazz, DynamoDBQueryExpression<T> queryExpression, DynamoDBMapperConfig config) <T> int
DynamoDBMapper.count
(Class<T> clazz, DynamoDBQueryExpression<T> queryExpression) <T> int
DynamoDBMapper.count
(Class<T> clazz, DynamoDBQueryExpression<T> queryExpression, DynamoDBMapperConfig config) <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
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> PaginatedQueryList
<T> AbstractDynamoDBMapper.query
(Class<T> clazz, DynamoDBQueryExpression<T> queryExpression) <T> PaginatedQueryList
<T> AbstractDynamoDBMapper.query
(Class<T> clazz, DynamoDBQueryExpression<T> queryExpression, DynamoDBMapperConfig config) <T> PaginatedQueryList
<T> DynamoDBMapper.query
(Class<T> clazz, DynamoDBQueryExpression<T> queryExpression) <T> PaginatedQueryList
<T> DynamoDBMapper.query
(Class<T> clazz, DynamoDBQueryExpression<T> queryExpression, 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> 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> QueryResultPage
<T> AbstractDynamoDBMapper.queryPage
(Class<T> clazz, DynamoDBQueryExpression<T> queryExpression) <T> QueryResultPage
<T> AbstractDynamoDBMapper.queryPage
(Class<T> clazz, DynamoDBQueryExpression<T> queryExpression, DynamoDBMapperConfig config) <T> QueryResultPage
<T> DynamoDBMapper.queryPage
(Class<T> clazz, DynamoDBQueryExpression<T> queryExpression) <T> QueryResultPage
<T> DynamoDBMapper.queryPage
(Class<T> clazz, DynamoDBQueryExpression<T> queryExpression, DynamoDBMapperConfig config) <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> IDynamoDBMapper.queryPage
(Class<T> clazz, DynamoDBQueryExpression<T> queryExpression, DynamoDBMapperConfig config) Queries an Amazon DynamoDB table and returns a single page of matching results.