TableWriteItems |
TableWriteItems.addHashAndRangePrimaryKeysToDelete(String hashKeyName,
String rangeKeyName,
Object... alternatingHashRangeKeyValues) |
Adds multiple hash-and-range primary keys to be deleted in a batch
write operation.
|
TableWriteItems |
TableWriteItems.addHashAndRangePrimaryKeyToDelete(String hashKeyName,
Object hashKeyValue,
String rangeKeyName,
Object rangeKeyValue) |
Adds a primary key (that consists of a hash-key and a range-key) to be
deleted in a batch write operation.
|
TableWriteItems |
TableWriteItems.addHashOnlyPrimaryKeysToDelete(String hashKeyName,
Object... hashKeyValues) |
Adds multiple hash-only primary keys to be deleted in a batch write
operation.
|
TableWriteItems |
TableWriteItems.addHashOnlyPrimaryKeyToDelete(String hashKeyName,
Object hashKeyValue) |
Adds a hash-only primary key to be deleted in a batch write
operation.
|
TableWriteItems |
TableWriteItems.addItemToPut(Item item) |
Adds an item to be put to the current table in a batch write operation.
|
TableWriteItems |
TableWriteItems.addPrimaryKeyToDelete(PrimaryKey primaryKey) |
Adds a primary key to be deleted in a batch write-item operation.
|
TableWriteItems |
TableWriteItems.withHashAndRangeKeysToDelete(String hashKeyName,
String rangeKeyName,
Object... alternatingHashAndRangeKeyValues) |
Used to specify multiple hash-and-range primary keys to be deleted
from the current table.
|
TableWriteItems |
TableWriteItems.withHashOnlyKeysToDelete(String hashKeyName,
Object... hashKeyValues) |
Used to specify multiple hash-only primary keys to be deleted from the
current table.
|
TableWriteItems |
TableWriteItems.withItemsToPut(Item... itemsToPut) |
Used to specify the items to be put in the current table in a batch write
operation.
|
TableWriteItems |
TableWriteItems.withItemsToPut(Collection<Item> itemsToPut) |
Used to specify the collection of items to be put in the current table in
a batch write operation.
|
TableWriteItems |
TableWriteItems.withPrimaryKeysToDelete(PrimaryKey... primaryKeysToDelete) |
Used to specify multiple primary keys to be deleted from the current
table.
|