Java com.amazonaws.services.dynamodbv2.document TableWriteItems fields, constructors, methods, implement or subclass

Example usage for Java com.amazonaws.services.dynamodbv2.document TableWriteItems fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.amazonaws.services.dynamodbv2.document TableWriteItems.

The text is from its open source code.

Constructor

Method

TableWriteItemsaddHashAndRangePrimaryKeyToDelete(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.
TableWriteItemsaddHashOnlyPrimaryKeysToDelete(String hashKeyName, Object... hashKeyValues)
Adds multiple hash-only primary keys to be deleted in a batch write operation.
TableWriteItemsaddItemToPut(Item item)
Adds an item to be put to the current table in a batch write operation.
TableWriteItemswithItemsToPut(Item... itemsToPut)
Used to specify the items to be put in the current table in a batch write operation.
TableWriteItemswithItemsToPut(Collection itemsToPut)
Used to specify the collection of items to be put in the current table in a batch write operation.
TableWriteItemswithPrimaryKeysToDelete(PrimaryKey... primaryKeysToDelete)
Used to specify multiple primary keys to be deleted from the current table.