Uses of Class
software.amazon.awssdk.enhanced.dynamodb.model.QueryEnhancedRequest.Builder
Packages that use QueryEnhancedRequest.Builder
Package
Description
-
Uses of QueryEnhancedRequest.Builder in software.amazon.awssdk.enhanced.dynamodb
Method parameters in software.amazon.awssdk.enhanced.dynamodb with type arguments of type QueryEnhancedRequest.BuilderModifier and TypeMethodDescriptiondefault SdkPublisher<Page<T>>DynamoDbAsyncIndex.query(Consumer<QueryEnhancedRequest.Builder> requestConsumer) Executes a query against a secondary index using aQueryConditionalexpression to retrieve a list of items matching the given conditions.default PagePublisher<T>DynamoDbAsyncTable.query(Consumer<QueryEnhancedRequest.Builder> requestConsumer) Executes a query against the primary index of the table using aQueryConditionalexpression to retrieve a list of items matching the given conditions.default SdkIterable<Page<T>>DynamoDbIndex.query(Consumer<QueryEnhancedRequest.Builder> requestConsumer) Executes a query against a secondary index using aQueryConditionalexpression to retrieve a list of items matching the given conditions.default PageIterable<T>DynamoDbTable.query(Consumer<QueryEnhancedRequest.Builder> requestConsumer) This is a convenience method that creates an instance of the request builder avoiding the need to create one manually viaQueryEnhancedRequest.builder(). -
Uses of QueryEnhancedRequest.Builder in software.amazon.awssdk.enhanced.dynamodb.internal.client
Method parameters in software.amazon.awssdk.enhanced.dynamodb.internal.client with type arguments of type QueryEnhancedRequest.BuilderModifier and TypeMethodDescriptionDefaultDynamoDbAsyncIndex.query(Consumer<QueryEnhancedRequest.Builder> requestConsumer) DefaultDynamoDbAsyncTable.query(Consumer<QueryEnhancedRequest.Builder> requestConsumer) SdkIterable<Page<T>>DefaultDynamoDbIndex.query(Consumer<QueryEnhancedRequest.Builder> requestConsumer) DefaultDynamoDbTable.query(Consumer<QueryEnhancedRequest.Builder> requestConsumer) -
Uses of QueryEnhancedRequest.Builder in software.amazon.awssdk.enhanced.dynamodb.model
Methods in software.amazon.awssdk.enhanced.dynamodb.model that return QueryEnhancedRequest.BuilderModifier and TypeMethodDescriptionQueryEnhancedRequest.Builder.addAttributeToProject(String attributeToProject) Adds a single attribute name to be retrieved from the database.QueryEnhancedRequest.Builder.addNestedAttributesToProject(Collection<NestedAttributeName> nestedAttributeNames) Adds a collection of nested attributes to be retrieved from the database.QueryEnhancedRequest.Builder.addNestedAttributesToProject(NestedAttributeName... nestedAttributeNames) Adds a collection of nested attributes to be retrieved from the database.QueryEnhancedRequest.Builder.addNestedAttributeToProject(NestedAttributeName nestedAttributeName) Adds a single nested attribute to be retrieved from the database.QueryEnhancedRequest.Builder.attributesToProject(String... attributesToProject) Sets one or more attribute names to be retrieved from the database.QueryEnhancedRequest.Builder.attributesToProject(Collection<String> attributesToProject) Sets a collection of the attribute names to be retrieved from the database.static QueryEnhancedRequest.BuilderQueryEnhancedRequest.builder()Creates a newly initialized builder for a request object.QueryEnhancedRequest.Builder.consistentRead(Boolean consistentRead) Determines the read consistency model: If set to true, the operation uses strongly consistent reads; otherwise, the operation uses eventually consistent reads.QueryEnhancedRequest.Builder.exclusiveStartKey(Map<String, AttributeValue> exclusiveStartKey) The primary key of the first item that this operation will evaluate.QueryEnhancedRequest.Builder.filterExpression(Expression filterExpression) Refines the query results by applying the filter expression on the results returned from the query and discards items that do not match.Sets a limit on how many items to evaluate in the query.QueryEnhancedRequest.Builder.queryConditional(QueryConditional queryConditional) Determines the matching conditions for this query request.QueryEnhancedRequest.Builder.returnConsumedCapacity(String returnConsumedCapacity) Whether to return the capacity consumed by this operation.QueryEnhancedRequest.Builder.returnConsumedCapacity(ReturnConsumedCapacity returnConsumedCapacity) Whether to return the capacity consumed by this operation.QueryEnhancedRequest.Builder.scanIndexForward(Boolean scanIndexForward) Results are sorted by sort key in ascending order ifscanIndexForwardis true.Determines the attributes to be returned in the result.Determines the attributes to be returned in the result.QueryEnhancedRequest.toBuilder()Returns a builder initialized with all existing values on the request object.