Uses of Class
com.amazonaws.services.dynamodbv2.model.QueryRequest
Packages that use QueryRequest
Package
Description
-
Uses of QueryRequest in com.amazonaws.services.dynamodbv2
Methods in com.amazonaws.services.dynamodbv2 with parameters of type QueryRequestModifier and TypeMethodDescriptionAbstractAmazonDynamoDB.query
(QueryRequest request) AmazonDynamoDB.query
(QueryRequest queryRequest) A Query operation uses the primary key of a table or a secondary index to directly access items from that table or index.AmazonDynamoDBClient.query
(QueryRequest queryRequest) A Query operation uses the primary key of a table or a secondary index to directly access items from that table or index.AbstractAmazonDynamoDBAsync.queryAsync
(QueryRequest request) AbstractAmazonDynamoDBAsync.queryAsync
(QueryRequest request, AsyncHandler<QueryRequest, QueryResult> asyncHandler) AmazonDynamoDBAsync.queryAsync
(QueryRequest queryRequest) A Query operation uses the primary key of a table or a secondary index to directly access items from that table or index.AmazonDynamoDBAsync.queryAsync
(QueryRequest queryRequest, AsyncHandler<QueryRequest, QueryResult> asyncHandler) A Query operation uses the primary key of a table or a secondary index to directly access items from that table or index.AmazonDynamoDBAsyncClient.queryAsync
(QueryRequest request) AmazonDynamoDBAsyncClient.queryAsync
(QueryRequest request, AsyncHandler<QueryRequest, QueryResult> asyncHandler) Method parameters in com.amazonaws.services.dynamodbv2 with type arguments of type QueryRequestModifier and TypeMethodDescriptionAbstractAmazonDynamoDBAsync.queryAsync
(QueryRequest request, AsyncHandler<QueryRequest, QueryResult> asyncHandler) AmazonDynamoDBAsync.queryAsync
(QueryRequest queryRequest, AsyncHandler<QueryRequest, QueryResult> asyncHandler) A Query operation uses the primary key of a table or a secondary index to directly access items from that table or index.AmazonDynamoDBAsyncClient.queryAsync
(QueryRequest request, AsyncHandler<QueryRequest, QueryResult> asyncHandler) -
Uses of QueryRequest in com.amazonaws.services.dynamodbv2.datamodeling
Constructors in com.amazonaws.services.dynamodbv2.datamodeling with parameters of type QueryRequestModifierConstructorDescriptionPaginatedQueryList
(DynamoDBMapper mapper, Class<T> clazz, AmazonDynamoDB dynamo, QueryRequest queryRequest, QueryResult queryResult, DynamoDBMapperConfig.PaginationLoadingStrategy paginationLoadingStrategy, DynamoDBMapperConfig config) -
Uses of QueryRequest in com.amazonaws.services.dynamodbv2.model
Methods in com.amazonaws.services.dynamodbv2.model that return QueryRequestModifier and TypeMethodDescriptionQueryRequest.addExclusiveStartKeyEntry
(String key, AttributeValue value) QueryRequest.addExpressionAttributeNamesEntry
(String key, String value) QueryRequest.addExpressionAttributeValuesEntry
(String key, AttributeValue value) QueryRequest.addKeyConditionsEntry
(String key, Condition value) QueryRequest.addQueryFilterEntry
(String key, Condition value) QueryRequest.clearExclusiveStartKeyEntries()
Removes all the entries added into ExclusiveStartKey.QueryRequest.clearExpressionAttributeNamesEntries()
Removes all the entries added into ExpressionAttributeNames.QueryRequest.clearExpressionAttributeValuesEntries()
Removes all the entries added into ExpressionAttributeValues.QueryRequest.clearKeyConditionsEntries()
Removes all the entries added into KeyConditions.QueryRequest.clearQueryFilterEntries()
Removes all the entries added into QueryFilter.QueryRequest.clone()
QueryRequest.withAttributesToGet
(String... attributesToGet) QueryRequest.withAttributesToGet
(Collection<String> attributesToGet) QueryRequest.withConditionalOperator
(ConditionalOperator conditionalOperator) QueryRequest.withConditionalOperator
(String conditionalOperator) QueryRequest.withConsistentRead
(Boolean consistentRead) Determines the read consistency model: If set totrue
, then the operation uses strongly consistent reads; otherwise, the operation uses eventually consistent reads.QueryRequest.withExclusiveStartKey
(Map.Entry<String, AttributeValue> hashKey, Map.Entry<String, AttributeValue> rangeKey) The primary hash and range keys of the first item that this operation will evaluate.QueryRequest.withExclusiveStartKey
(Map<String, AttributeValue> exclusiveStartKey) The primary key of the first item that this operation will evaluate.QueryRequest.withExpressionAttributeNames
(Map<String, String> expressionAttributeNames) One or more substitution tokens for attribute names in an expression.QueryRequest.withExpressionAttributeValues
(Map<String, AttributeValue> expressionAttributeValues) One or more values that can be substituted in an expression.QueryRequest.withFilterExpression
(String filterExpression) A string that contains conditions that DynamoDB applies after the Query operation, but before the data is returned to you.QueryRequest.withIndexName
(String indexName) The name of an index to query.QueryRequest.withKeyConditionExpression
(String keyConditionExpression) The condition that specifies the key value(s) for items to be retrieved by the Query action.QueryRequest.withKeyConditions
(Map<String, Condition> keyConditions) The maximum number of items to evaluate (not necessarily the number of matching items).QueryRequest.withProjectionExpression
(String projectionExpression) A string that identifies one or more attributes to retrieve from the table.QueryRequest.withQueryFilter
(Map<String, Condition> queryFilter) QueryRequest.withReturnConsumedCapacity
(ReturnConsumedCapacity returnConsumedCapacity) QueryRequest.withReturnConsumedCapacity
(String returnConsumedCapacity) QueryRequest.withScanIndexForward
(Boolean scanIndexForward) Specifies the order for index traversal: Iftrue
(default), the traversal is performed in ascending order; iffalse
, the traversal is performed in descending order.QueryRequest.withSelect
(Select select) The attributes to be returned in the result.QueryRequest.withSelect
(String select) The attributes to be returned in the result.QueryRequest.withTableName
(String tableName) The name of the table containing the requested items.