Uses of Interface
software.amazon.awssdk.enhanced.dynamodb.model.QueryConditional
-
-
Uses of QueryConditional in software.amazon.awssdk.enhanced.dynamodb
Methods in software.amazon.awssdk.enhanced.dynamodb with parameters of type QueryConditional Modifier and Type Method Description default SdkPublisher<Page<T>>
DynamoDbAsyncIndex. query(QueryConditional queryConditional)
Executes a query against the secondary index of the table using aQueryConditional
expression 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 aQueryConditional
expression 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 aQueryConditional
expression 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 aQueryConditional
expression 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 QueryConditional Modifier and Type Method Description SdkPublisher<Page<T>>
DefaultDynamoDbAsyncIndex. query(QueryConditional queryConditional)
PagePublisher<T>
DefaultDynamoDbAsyncTable. query(QueryConditional queryConditional)
SdkIterable<Page<T>>
DefaultDynamoDbIndex. query(QueryConditional queryConditional)
PageIterable<T>
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 QueryConditional Modifier and Type Class Description class
BeginsWithConditional
class
BetweenConditional
class
EqualToConditional
class
SingleKeyItemConditional
AQueryConditional
implementation 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 QueryConditional Modifier and Type Method Description static QueryConditional
QueryConditional. keyEqualTo(Consumer<Key.Builder> keyConsumer)
Creates aQueryConditional
that matches when the key of an index is equal to a specific value.static QueryConditional
QueryConditional. keyEqualTo(Key key)
Creates aQueryConditional
that matches when the key of an index is equal to a specific value.QueryConditional
QueryEnhancedRequest. queryConditional()
Returns the matching condition of the query.static QueryConditional
QueryConditional. sortBeginsWith(Consumer<Key.Builder> keyConsumer)
Creates aQueryConditional
that matches when the key of an index begins with a specific value.static QueryConditional
QueryConditional. sortBeginsWith(Key key)
Creates aQueryConditional
that matches when the key of an index begins with a specific value.static QueryConditional
QueryConditional. sortBetween(Consumer<Key.Builder> keyFromConsumer, Consumer<Key.Builder> keyToConsumer)
Creates aQueryConditional
that matches when the key of an index is between two specific values.static QueryConditional
QueryConditional. sortBetween(Key keyFrom, Key keyTo)
Creates aQueryConditional
that matches when the key of an index is between two specific values.static QueryConditional
QueryConditional. sortGreaterThan(Consumer<Key.Builder> keyConsumer)
Creates aQueryConditional
that matches when the key of an index is greater than a specific value.static QueryConditional
QueryConditional. sortGreaterThan(Key key)
Creates aQueryConditional
that matches when the key of an index is greater than a specific value.static QueryConditional
QueryConditional. sortGreaterThanOrEqualTo(Consumer<Key.Builder> keyConsumer)
Creates aQueryConditional
that matches when the key of an index is greater than or equal to a specific value.static QueryConditional
QueryConditional. sortGreaterThanOrEqualTo(Key key)
Creates aQueryConditional
that matches when the key of an index is greater than or equal to a specific value.static QueryConditional
QueryConditional. sortLessThan(Consumer<Key.Builder> keyConsumer)
Creates aQueryConditional
that matches when the key of an index is less than a specific value.static QueryConditional
QueryConditional. sortLessThan(Key key)
Creates aQueryConditional
that matches when the key of an index is less than a specific value.static QueryConditional
QueryConditional. sortLessThanOrEqualTo(Consumer<Key.Builder> keyConsumer)
Creates aQueryConditional
that matches when the key of an index is less than or equal to a specific value.static QueryConditional
QueryConditional. sortLessThanOrEqualTo(Key key)
Creates aQueryConditional
that 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 QueryConditional Modifier and Type Method Description QueryEnhancedRequest.Builder
QueryEnhancedRequest.Builder. queryConditional(QueryConditional queryConditional)
Determines the matching conditions for this query request.
-