Uses of Class
com.amazonaws.services.dynamodbv2.document.TableWriteItems
Packages that use TableWriteItems
Package
Description
-
Uses of TableWriteItems in com.amazonaws.services.dynamodbv2.document
Methods in com.amazonaws.services.dynamodbv2.document that return TableWriteItemsModifier and TypeMethodDescriptionTableWriteItems.addHashAndRangePrimaryKeysToDelete
(String hashKeyName, String rangeKeyName, Object... alternatingHashRangeKeyValues) Adds multiple hash-and-range primary keys to be deleted in a batch write operation.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.addHashOnlyPrimaryKeysToDelete
(String hashKeyName, Object... hashKeyValues) Adds multiple hash-only primary keys to be deleted in a batch write operation.TableWriteItems.addHashOnlyPrimaryKeyToDelete
(String hashKeyName, Object hashKeyValue) Adds a hash-only primary key to be deleted in a batch write operation.TableWriteItems.addItemToPut
(Item item) Adds an item to be put to the current table in a batch write operation.TableWriteItems.addPrimaryKeyToDelete
(PrimaryKey primaryKey) Adds a primary key to be deleted in a batch write-item operation.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.withHashOnlyKeysToDelete
(String hashKeyName, Object... hashKeyValues) Used to specify multiple hash-only primary keys to be deleted from the current table.TableWriteItems.withItemsToPut
(Item... itemsToPut) Used to specify the items to be put in the current table in a batch write operation.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.withPrimaryKeysToDelete
(PrimaryKey... primaryKeysToDelete) Used to specify multiple primary keys to be deleted from the current table.Methods in com.amazonaws.services.dynamodbv2.document with parameters of type TableWriteItems -
Uses of TableWriteItems in com.amazonaws.services.dynamodbv2.document.api
Methods in com.amazonaws.services.dynamodbv2.document.api with parameters of type TableWriteItemsModifier and TypeMethodDescriptionBatchWriteItemApi.batchWriteItem
(TableWriteItems... tableWriteItems) Used to perform a batch write operation to DynamoDB. -
Uses of TableWriteItems in com.amazonaws.services.dynamodbv2.document.spec
Methods in com.amazonaws.services.dynamodbv2.document.spec that return types with arguments of type TableWriteItemsMethods in com.amazonaws.services.dynamodbv2.document.spec with parameters of type TableWriteItemsModifier and TypeMethodDescriptionBatchWriteItemSpec.withTableWriteItems
(TableWriteItems... tableWriteItems)