Uses of Interface
software.amazon.awssdk.enhanced.dynamodb.model.QueryConditional
Packages that use QueryConditional
Package
Description
-
Uses of QueryConditional in software.amazon.awssdk.enhanced.dynamodb
Methods in software.amazon.awssdk.enhanced.dynamodb with parameters of type QueryConditionalModifier and TypeMethodDescriptiondefault SdkPublisher<Page<T>>DynamoDbAsyncIndex.query(QueryConditional queryConditional) Executes a query against the secondary index of the table using aQueryConditionalexpression to retrieve a list of items matching the given conditions.default PagePublisher<T>DynamoDbAsyncTable.query(QueryConditional queryConditional) 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(QueryConditional queryConditional) Executes a query against the secondary index of the table using aQueryConditionalexpression to retrieve a list of items matching the given conditions.default PageIterable<T>DynamoDbTable.query(QueryConditional queryConditional) Executes a query against the primary index of the table using aQueryConditionalexpression to retrieve a list of items matching the given conditions. -
Uses of QueryConditional in software.amazon.awssdk.enhanced.dynamodb.internal.client
Methods in software.amazon.awssdk.enhanced.dynamodb.internal.client with parameters of type QueryConditionalModifier and TypeMethodDescriptionDefaultDynamoDbAsyncIndex.query(QueryConditional queryConditional) DefaultDynamoDbAsyncTable.query(QueryConditional queryConditional) SdkIterable<Page<T>>DefaultDynamoDbIndex.query(QueryConditional queryConditional) DefaultDynamoDbTable.query(QueryConditional queryConditional) -
Uses of QueryConditional in software.amazon.awssdk.enhanced.dynamodb.internal.conditional
Classes in software.amazon.awssdk.enhanced.dynamodb.internal.conditional that implement QueryConditionalModifier and TypeClassDescriptionclassclassclassclassAQueryConditionalimplementation that matches values from a specific key using a supplied operator for the sort key value comparison. -
Uses of QueryConditional in software.amazon.awssdk.enhanced.dynamodb.model
Methods in software.amazon.awssdk.enhanced.dynamodb.model that return QueryConditionalModifier and TypeMethodDescriptionstatic QueryConditionalQueryConditional.keyEqualTo(Consumer<Key.Builder> keyConsumer) Creates aQueryConditionalthat matches when the key of an index is equal to a specific value.static QueryConditionalQueryConditional.keyEqualTo(Key key) Creates aQueryConditionalthat matches when the key of an index is equal to a specific value.QueryEnhancedRequest.queryConditional()Returns the matching condition of the query.static QueryConditionalQueryConditional.sortBeginsWith(Consumer<Key.Builder> keyConsumer) Creates aQueryConditionalthat matches when the key of an index begins with a specific value.static QueryConditionalQueryConditional.sortBeginsWith(Key key) Creates aQueryConditionalthat matches when the key of an index begins with a specific value.static QueryConditionalQueryConditional.sortBetween(Consumer<Key.Builder> keyFromConsumer, Consumer<Key.Builder> keyToConsumer) Creates aQueryConditionalthat matches when the key of an index is between two specific values.static QueryConditionalQueryConditional.sortBetween(Key keyFrom, Key keyTo) Creates aQueryConditionalthat matches when the key of an index is between two specific values.static QueryConditionalQueryConditional.sortGreaterThan(Consumer<Key.Builder> keyConsumer) Creates aQueryConditionalthat matches when the key of an index is greater than a specific value.static QueryConditionalQueryConditional.sortGreaterThan(Key key) Creates aQueryConditionalthat matches when the key of an index is greater than a specific value.static QueryConditionalQueryConditional.sortGreaterThanOrEqualTo(Consumer<Key.Builder> keyConsumer) Creates aQueryConditionalthat matches when the key of an index is greater than or equal to a specific value.static QueryConditionalQueryConditional.sortGreaterThanOrEqualTo(Key key) Creates aQueryConditionalthat matches when the key of an index is greater than or equal to a specific value.static QueryConditionalQueryConditional.sortLessThan(Consumer<Key.Builder> keyConsumer) Creates aQueryConditionalthat matches when the key of an index is less than a specific value.static QueryConditionalQueryConditional.sortLessThan(Key key) Creates aQueryConditionalthat matches when the key of an index is less than a specific value.static QueryConditionalQueryConditional.sortLessThanOrEqualTo(Consumer<Key.Builder> keyConsumer) Creates aQueryConditionalthat matches when the key of an index is less than or equal to a specific value.static QueryConditionalQueryConditional.sortLessThanOrEqualTo(Key key) Creates aQueryConditionalthat matches when the key of an index is less than or equal to a specific value.Methods in software.amazon.awssdk.enhanced.dynamodb.model with parameters of type QueryConditionalModifier and TypeMethodDescriptionQueryEnhancedRequest.Builder.queryConditional(QueryConditional queryConditional) Determines the matching conditions for this query request.