Modifier and Type | Method and Description |
---|---|
default PageIterable<T> |
DynamoDbTable.query(QueryConditional queryConditional)
Executes a query against the primary index of the table using a
QueryConditional 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 a
QueryConditional 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 a
QueryConditional expression to retrieve a
list of items matching the given conditions. |
default SdkPublisher<Page<T>> |
DynamoDbAsyncIndex.query(QueryConditional queryConditional)
Executes a query against the secondary index of the table using a
QueryConditional expression to retrieve
a list of items matching the given conditions. |
Modifier and Type | Method and Description |
---|---|
PageIterable<T> |
DefaultDynamoDbTable.query(QueryConditional queryConditional) |
SdkIterable<Page<T>> |
DefaultDynamoDbIndex.query(QueryConditional queryConditional) |
PagePublisher<T> |
DefaultDynamoDbAsyncTable.query(QueryConditional queryConditional) |
SdkPublisher<Page<T>> |
DefaultDynamoDbAsyncIndex.query(QueryConditional queryConditional) |
Modifier and Type | Class and Description |
---|---|
class |
BeginsWithConditional |
class |
BetweenConditional |
class |
EqualToConditional |
class |
SingleKeyItemConditional
A
QueryConditional implementation that matches values from a specific key using a supplied operator for the
sort key value comparison. |
Modifier and Type | Method and Description |
---|---|
static QueryConditional |
QueryConditional.keyEqualTo(Consumer<Key.Builder> keyConsumer)
Creates a
QueryConditional that matches when the key of an index is equal to a specific value. |
static QueryConditional |
QueryConditional.keyEqualTo(Key key)
Creates a
QueryConditional 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 a
QueryConditional that matches when the key of an index begins with a specific value. |
static QueryConditional |
QueryConditional.sortBeginsWith(Key key)
Creates a
QueryConditional 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 a
QueryConditional that matches when the key of an index is between two specific values. |
static QueryConditional |
QueryConditional.sortBetween(Key keyFrom,
Key keyTo)
Creates a
QueryConditional that matches when the key of an index is between two specific values. |
static QueryConditional |
QueryConditional.sortGreaterThan(Consumer<Key.Builder> keyConsumer)
Creates a
QueryConditional that matches when the key of an index is greater than a specific value. |
static QueryConditional |
QueryConditional.sortGreaterThan(Key key)
Creates a
QueryConditional that matches when the key of an index is greater than a specific value. |
static QueryConditional |
QueryConditional.sortGreaterThanOrEqualTo(Consumer<Key.Builder> keyConsumer)
Creates a
QueryConditional that matches when the key of an index is greater than or equal to a specific
value. |
static QueryConditional |
QueryConditional.sortGreaterThanOrEqualTo(Key key)
Creates a
QueryConditional 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 a
QueryConditional that matches when the key of an index is less than a specific value. |
static QueryConditional |
QueryConditional.sortLessThan(Key key)
Creates a
QueryConditional that matches when the key of an index is less than a specific value. |
static QueryConditional |
QueryConditional.sortLessThanOrEqualTo(Consumer<Key.Builder> keyConsumer)
Creates a
QueryConditional that matches when the key of an index is less than or equal to a specific
value. |
static QueryConditional |
QueryConditional.sortLessThanOrEqualTo(Key key)
Creates a
QueryConditional that matches when the key of an index is less than or equal to a specific
value. |
Modifier and Type | Method and Description |
---|---|
QueryEnhancedRequest.Builder |
QueryEnhancedRequest.Builder.queryConditional(QueryConditional queryConditional)
Determines the matching conditions for this query request.
|
Copyright © 2023. All rights reserved.