Modifier and Type | Method and Description |
---|---|
Key |
Key.Builder.build()
Construct a
Key from this builder. |
Key |
DynamoDbAsyncIndex.keyFrom(T item)
Creates a
Key object from a modelled item. |
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. |
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 |
DefaultDynamoDbAsyncIndex.keyFrom(T item) |
Key |
DefaultDynamoDbIndex.keyFrom(T item) |
Key |
DefaultDynamoDbAsyncTable.keyFrom(T item) |
Key |
DefaultDynamoDbTable.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 |
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. |
Key |
GetItemEnhancedRequest.key()
Returns the primary
Key for the item to get. |
Modifier and Type | Method and Description |
---|---|
static QueryConditional |
QueryConditional.beginsWith(Key key)
Creates a
QueryConditional that matches when the key of an index begins with a specific value. |
static QueryConditional |
QueryConditional.between(Key keyFrom,
Key keyTo)
Creates a
QueryConditional that matches when the key of an index is between two specific values. |
static QueryConditional |
QueryConditional.equalTo(Key key)
Creates a
QueryConditional that matches when the key of an index is equal to a specific value. |
static QueryConditional |
QueryConditional.greaterThan(Key key)
Creates a
QueryConditional that matches when the key of an index is greater than a specific value. |
static QueryConditional |
QueryConditional.greaterThanOrEqualTo(Key key)
Creates a
QueryConditional that matches when the key of an index is greater than or equal to a specific
value. |
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. |
GetItemEnhancedRequest.Builder |
GetItemEnhancedRequest.Builder.key(Key key)
Sets the primary
Key that will be used to match the item to retrieve. |
static QueryConditional |
QueryConditional.lessThan(Key key)
Creates a
QueryConditional that matches when the key of an index is less than a specific value. |
static QueryConditional |
QueryConditional.lessThanOrEqualTo(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.