ConditionCheck.Builder |
ConditionCheck.Builder.key(Consumer<Key.Builder> keyConsumer) |
Sets the primary Key that will be used together with the condition expression
on the builder by accepting a consumer of Key.Builder .
|
DeleteItemEnhancedRequest.Builder |
DeleteItemEnhancedRequest.Builder.key(Consumer<Key.Builder> keyConsumer) |
Sets the primary Key that will be used to match the item to delete
on the builder by accepting a consumer of Key.Builder .
|
GetItemEnhancedRequest.Builder |
GetItemEnhancedRequest.Builder.key(Consumer<Key.Builder> keyConsumer) |
Sets the primary Key that will be used to match the item to retrieve
by accepting a consumer of Key.Builder .
|
TransactDeleteItemEnhancedRequest.Builder |
TransactDeleteItemEnhancedRequest.Builder.key(Consumer<Key.Builder> keyConsumer) |
Sets the primary Key that will be used to match the item to delete
on the builder by accepting a consumer of Key.Builder .
|
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.sortBeginsWith(Consumer<Key.Builder> keyConsumer) |
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.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.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.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.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.
|