Uses of Class
com.amazonaws.services.dynamodbv2.model.QueryRequest

Packages that use QueryRequest
com.amazonaws.services.dynamodbv2 Synchronous and asynchronous client classes for accessing AmazonDynamoDBv2. 
com.amazonaws.services.dynamodbv2.datamodeling   
com.amazonaws.services.dynamodbv2.model Classes modeling the various types represented by AmazonDynamoDBv2. 
 

Uses of QueryRequest in com.amazonaws.services.dynamodbv2
 

Methods in com.amazonaws.services.dynamodbv2 with parameters of type QueryRequest
 QueryResult AmazonDynamoDBClient.query(QueryRequest queryRequest)
           A Query operation directly accesses items from a table using the table primary key, or from an index using the index key.
 QueryResult AmazonDynamoDB.query(QueryRequest queryRequest)
           A Query operation directly accesses items from a table using the table primary key, or from an index using the index key.
 Future<QueryResult> AmazonDynamoDBAsyncClient.queryAsync(QueryRequest queryRequest)
           A Query operation directly accesses items from a table using the table primary key, or from an index using the index key.
 Future<QueryResult> AmazonDynamoDBAsync.queryAsync(QueryRequest queryRequest)
           A Query operation directly accesses items from a table using the table primary key, or from an index using the index key.
 Future<QueryResult> AmazonDynamoDBAsyncClient.queryAsync(QueryRequest queryRequest, AsyncHandler<QueryRequest,QueryResult> asyncHandler)
           A Query operation directly accesses items from a table using the table primary key, or from an index using the index key.
 Future<QueryResult> AmazonDynamoDBAsync.queryAsync(QueryRequest queryRequest, AsyncHandler<QueryRequest,QueryResult> asyncHandler)
           A Query operation directly accesses items from a table using the table primary key, or from an index using the index key.
 

Method parameters in com.amazonaws.services.dynamodbv2 with type arguments of type QueryRequest
 Future<QueryResult> AmazonDynamoDBAsyncClient.queryAsync(QueryRequest queryRequest, AsyncHandler<QueryRequest,QueryResult> asyncHandler)
           A Query operation directly accesses items from a table using the table primary key, or from an index using the index key.
 Future<QueryResult> AmazonDynamoDBAsync.queryAsync(QueryRequest queryRequest, AsyncHandler<QueryRequest,QueryResult> asyncHandler)
           A Query operation directly accesses items from a table using the table primary key, or from an index using the index key.
 

Uses of QueryRequest in com.amazonaws.services.dynamodbv2.datamodeling
 

Constructors in com.amazonaws.services.dynamodbv2.datamodeling with parameters of type QueryRequest
PaginatedQueryList(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 QueryRequest
 QueryRequest QueryRequest.addExclusiveStartKeyEntry(String key, AttributeValue value)
          The primary key of the first item that this operation will evaluate.
 QueryRequest QueryRequest.addKeyConditionsEntry(String key, Condition value)
          The selection criteria for the query.
 QueryRequest QueryRequest.addQueryFilterEntry(String key, Condition value)
          Evaluates the query results and returns only the desired values.
 QueryRequest QueryRequest.clearExclusiveStartKeyEntries()
          Removes all the entries added into ExclusiveStartKey.
 QueryRequest QueryRequest.clearKeyConditionsEntries()
          Removes all the entries added into KeyConditions.
 QueryRequest QueryRequest.clearQueryFilterEntries()
          Removes all the entries added into QueryFilter.
 QueryRequest QueryRequest.withAttributesToGet(Collection<String> attributesToGet)
          The names of one or more attributes to retrieve.
 QueryRequest QueryRequest.withAttributesToGet(String... attributesToGet)
          The names of one or more attributes to retrieve.
 QueryRequest QueryRequest.withConditionalOperator(ConditionalOperator conditionalOperator)
          A logical operator to apply to the conditions in the QueryFilter map:
 QueryRequest QueryRequest.withConditionalOperator(String conditionalOperator)
          A logical operator to apply to the conditions in the QueryFilter map:
 QueryRequest QueryRequest.withConsistentRead(Boolean consistentRead)
          If set to true, then the operation uses strongly consistent reads; otherwise, eventually consistent reads are used.
 QueryRequest QueryRequest.withExclusiveStartKey(Map.Entry<String,AttributeValue> hashKey, Map.Entry<String,AttributeValue> rangeKey)
          The primary key of the first item that this operation will evaluate.
 QueryRequest QueryRequest.withExclusiveStartKey(Map<String,AttributeValue> exclusiveStartKey)
          The primary key of the first item that this operation will evaluate.
 QueryRequest QueryRequest.withIndexName(String indexName)
          The name of an index to query.
 QueryRequest QueryRequest.withKeyConditions(Map<String,Condition> keyConditions)
          The selection criteria for the query.
 QueryRequest QueryRequest.withLimit(Integer limit)
          The maximum number of items to evaluate (not necessarily the number of matching items).
 QueryRequest QueryRequest.withQueryFilter(Map<String,Condition> queryFilter)
          Evaluates the query results and returns only the desired values.
 QueryRequest QueryRequest.withReturnConsumedCapacity(ReturnConsumedCapacity returnConsumedCapacity)
          If set to TOTAL, the response includes ConsumedCapacity data for tables and indexes.
 QueryRequest QueryRequest.withReturnConsumedCapacity(String returnConsumedCapacity)
          If set to TOTAL, the response includes ConsumedCapacity data for tables and indexes.
 QueryRequest QueryRequest.withScanIndexForward(Boolean scanIndexForward)
          Specifies ascending (true) or descending (false) traversal of the index.
 QueryRequest QueryRequest.withSelect(Select select)
          The attributes to be returned in the result.
 QueryRequest QueryRequest.withSelect(String select)
          The attributes to be returned in the result.
 QueryRequest QueryRequest.withTableName(String tableName)
          The name of the table containing the requested items.
 



Copyright © 2016. All rights reserved.