Java com.amazonaws.services.dynamodbv2.model PutItemRequest fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Constructor

PutItemRequest(String tableName, java.util.Map item)
Constructs a new PutItemRequest object.
PutItemRequest()
Default constructor for PutItemRequest object.

Method

PutItemRequestaddItemEntry(String key, AttributeValue value)
java.util.MapgetItem()

A map of attribute name/value pairs, one for each attribute.

StringgetTableName()

The name of the table to contain the item.

voidsetConditionExpression(String conditionExpression)

A condition that must be satisfied in order for a conditional PutItem operation to succeed.

voidsetItem(java.util.Map item)

A map of attribute name/value pairs, one for each attribute.

voidsetReturnValues(String returnValues)

Use ReturnValues if you want to get the item attributes as they appeared before they were updated with the PutItem request.

voidsetReturnValues(ReturnValue returnValues)

Use ReturnValues if you want to get the item attributes as they appeared before they were updated with the PutItem request.

voidsetTableName(String tableName)

The name of the table to contain the item.