| Package | Description |
|---|---|
| com.amazonaws.services.dynamodbv2.model |
Classes modeling the various types represented by AmazonDynamoDB
|
| Modifier and Type | Method and Description |
|---|---|
static ReturnValue |
ReturnValue.fromValue(String value)
Use this in place of valueOf.
|
static ReturnValue |
ReturnValue.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReturnValue[] |
ReturnValue.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
void |
UpdateItemRequest.setReturnValues(ReturnValue returnValues)
Use
ReturnValues if you want to get the item attributes as
they appear before or after they are updated. |
void |
PutItemRequest.setReturnValues(ReturnValue returnValues)
Use
ReturnValues if you want to get the item attributes as
they appeared before they were updated with the PutItem
request. |
void |
DeleteItemRequest.setReturnValues(ReturnValue returnValues)
Use
ReturnValues if you want to get the item attributes as
they appeared before they were deleted. |
UpdateItemRequest |
UpdateItemRequest.withReturnValues(ReturnValue returnValues)
Use
ReturnValues if you want to get the item attributes as
they appear before or after they are updated. |
PutItemRequest |
PutItemRequest.withReturnValues(ReturnValue returnValues)
Use
ReturnValues if you want to get the item attributes as
they appeared before they were updated with the PutItem
request. |
DeleteItemRequest |
DeleteItemRequest.withReturnValues(ReturnValue returnValues)
Use
ReturnValues if you want to get the item attributes as
they appeared before they were deleted. |
| Constructor and Description |
|---|
DeleteItemRequest(String tableName,
Map<String,AttributeValue> key,
ReturnValue returnValues)
Constructs a new DeleteItemRequest object.
|
PutItemRequest(String tableName,
Map<String,AttributeValue> item,
ReturnValue returnValues)
Constructs a new PutItemRequest object.
|
UpdateItemRequest(String tableName,
Map<String,AttributeValue> key,
Map<String,AttributeValueUpdate> attributeUpdates,
ReturnValue returnValues)
Constructs a new UpdateItemRequest object.
|
Copyright © 2018. All rights reserved.