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

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

Introduction

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

The text is from its open source code.

Constructor

UpdateItemRequest()
Default constructor for UpdateItemRequest object.
UpdateItemRequest(String tableName, java.util.Map key, java.util.Map attributeUpdates)
Constructs a new UpdateItemRequest object.

Method

UpdateItemRequestaddAttributeUpdatesEntry(String key, AttributeValueUpdate value)
UpdateItemRequestaddExpectedEntry(String key, ExpectedAttributeValue value)
UpdateItemRequestaddKeyEntry(String key, AttributeValue value)
java.util.MapgetAttributeUpdates()

This is a legacy parameter.

java.util.MapgetExpressionAttributeValues()

One or more values that can be substituted in an expression.

java.util.MapgetKey()

The primary key of the item to be updated.

StringgetTableName()

The name of the table containing the item to update.

StringgetUpdateExpression()

An expression that defines one or more attributes to be updated, the action to be performed on them, and new values for them.

voidsetConditionExpression(String conditionExpression)

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

voidsetExpressionAttributeNames(java.util.Map expressionAttributeNames)

One or more substitution tokens for attribute names in an expression.

voidsetExpressionAttributeValues(java.util.Map expressionAttributeValues)

One or more values that can be substituted in an expression.

voidsetReturnValues(String returnValues)

Use ReturnValues if you want to get the item attributes as they appear before or after they are updated.

voidsetReturnValues(ReturnValue returnValues)

Use ReturnValues if you want to get the item attributes as they appear before or after they are updated.

voidsetTableName(String tableName)

The name of the table containing the item to update.