| Modifier and Type | Method and Description |
|---|---|
Key |
Key.Builder.build()
Construct a
Key from this builder. |
Key |
DynamoDbIndex.keyFrom(T item)
Creates a
Key object from a modelled item. |
Key |
MappedTableResource.keyFrom(T item)
Creates a
Key object from a modelled item. |
Key |
DynamoDbAsyncIndex.keyFrom(T item)
Creates a
Key object from a modelled item. |
| Modifier and Type | Method and Description |
|---|---|
static <T> Key |
EnhancedClientUtils.createKeyFromItem(T item,
TableSchema<T> tableSchema,
String indexName) |
| Modifier and Type | Method and Description |
|---|---|
Key |
DefaultDynamoDbTable.keyFrom(T item) |
Key |
DefaultDynamoDbAsyncTable.keyFrom(T item) |
Key |
DefaultDynamoDbIndex.keyFrom(T item) |
Key |
DefaultDynamoDbAsyncIndex.keyFrom(T item) |
| Constructor and Description |
|---|
BeginsWithConditional(Key key) |
BetweenConditional(Key key1,
Key key2) |
EqualToConditional(Key key) |
SingleKeyItemConditional(Key key,
String operator) |
| Modifier and Type | Method and Description |
|---|---|
Key |
GetItemOperation.key() |
Key |
BatchableReadOperation.key() |
| Modifier and Type | Method and Description |
|---|---|
Key |
GetItemEnhancedRequest.key()
Returns the primary
Key for the item to get. |
Key |
ConditionCheck.key()
Returns the primary
Key that the condition is valid for, or null if it doesn't exist. |
Key |
DeleteItemEnhancedRequest.key()
Returns the primary
Key for the item to delete. |
| Modifier and Type | Method and Description |
|---|---|
GetItemEnhancedRequest.Builder |
GetItemEnhancedRequest.Builder.key(Key key)
Sets the primary
Key that will be used to match the item to retrieve. |
ConditionCheck.Builder |
ConditionCheck.Builder.key(Key key)
Sets the primary
Key that will be used together with the condition expression. |
DeleteItemEnhancedRequest.Builder |
DeleteItemEnhancedRequest.Builder.key(Key key)
Sets the primary
Key that will be used to match the item to delete. |
static QueryConditional |
QueryConditional.keyEqualTo(Key key)
Creates a
QueryConditional that matches when the key of an index is equal to 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(Key keyFrom,
Key keyTo)
Creates a
QueryConditional that matches when the key of an index is between two specific values. |
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(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(Key key)
Creates a
QueryConditional that matches when the key of an index is less than 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. |
Copyright © 2020. All rights reserved.