Uses of Class
com.amazonaws.services.dynamodbv2.model.UpdateItemRequest

Packages that use UpdateItemRequest
com.amazonaws.services.dynamodbv2 Synchronous and asynchronous client classes for accessing AmazonDynamoDBv2. 
com.amazonaws.services.dynamodbv2.model Classes modeling the various types represented by AmazonDynamoDBv2. 
 

Uses of UpdateItemRequest in com.amazonaws.services.dynamodbv2
 

Methods in com.amazonaws.services.dynamodbv2 with parameters of type UpdateItemRequest
 UpdateItemResult AmazonDynamoDBClient.updateItem(UpdateItemRequest updateItemRequest)
           Edits an existing item's attributes, or inserts a new item if it does not already exist.
 UpdateItemResult AmazonDynamoDB.updateItem(UpdateItemRequest updateItemRequest)
           Edits an existing item's attributes, or inserts a new item if it does not already exist.
 Future<UpdateItemResult> AmazonDynamoDBAsyncClient.updateItemAsync(UpdateItemRequest updateItemRequest)
           Edits an existing item's attributes, or inserts a new item if it does not already exist.
 Future<UpdateItemResult> AmazonDynamoDBAsync.updateItemAsync(UpdateItemRequest updateItemRequest)
           Edits an existing item's attributes, or inserts a new item if it does not already exist.
 Future<UpdateItemResult> AmazonDynamoDBAsyncClient.updateItemAsync(UpdateItemRequest updateItemRequest, AsyncHandler<UpdateItemRequest,UpdateItemResult> asyncHandler)
           Edits an existing item's attributes, or inserts a new item if it does not already exist.
 Future<UpdateItemResult> AmazonDynamoDBAsync.updateItemAsync(UpdateItemRequest updateItemRequest, AsyncHandler<UpdateItemRequest,UpdateItemResult> asyncHandler)
           Edits an existing item's attributes, or inserts a new item if it does not already exist.
 

Method parameters in com.amazonaws.services.dynamodbv2 with type arguments of type UpdateItemRequest
 Future<UpdateItemResult> AmazonDynamoDBAsyncClient.updateItemAsync(UpdateItemRequest updateItemRequest, AsyncHandler<UpdateItemRequest,UpdateItemResult> asyncHandler)
           Edits an existing item's attributes, or inserts a new item if it does not already exist.
 Future<UpdateItemResult> AmazonDynamoDBAsync.updateItemAsync(UpdateItemRequest updateItemRequest, AsyncHandler<UpdateItemRequest,UpdateItemResult> asyncHandler)
           Edits an existing item's attributes, or inserts a new item if it does not already exist.
 

Uses of UpdateItemRequest in com.amazonaws.services.dynamodbv2.model
 

Methods in com.amazonaws.services.dynamodbv2.model that return UpdateItemRequest
 UpdateItemRequest UpdateItemRequest.addAttributeUpdatesEntry(String key, AttributeValueUpdate value)
          The names of attributes to be modified, the action to perform on each, and the new value for each.
 UpdateItemRequest UpdateItemRequest.addExpectedEntry(String key, ExpectedAttributeValue value)
          A map of attribute/condition pairs.
 UpdateItemRequest UpdateItemRequest.addKeyEntry(String key, AttributeValue value)
          The primary key that defines the item.
 UpdateItemRequest UpdateItemRequest.clearAttributeUpdatesEntries()
          Removes all the entries added into AttributeUpdates.
 UpdateItemRequest UpdateItemRequest.clearExpectedEntries()
          Removes all the entries added into Expected.
 UpdateItemRequest UpdateItemRequest.clearKeyEntries()
          Removes all the entries added into Key.
 UpdateItemRequest UpdateItemRequest.withAttributeUpdates(Map<String,AttributeValueUpdate> attributeUpdates)
          The names of attributes to be modified, the action to perform on each, and the new value for each.
 UpdateItemRequest UpdateItemRequest.withConditionalOperator(ConditionalOperator conditionalOperator)
          A logical operator to apply to the conditions in the Expected map:
 UpdateItemRequest UpdateItemRequest.withConditionalOperator(String conditionalOperator)
          A logical operator to apply to the conditions in the Expected map:
 UpdateItemRequest UpdateItemRequest.withExpected(Map<String,ExpectedAttributeValue> expected)
          A map of attribute/condition pairs.
 UpdateItemRequest UpdateItemRequest.withKey(Map.Entry<String,AttributeValue> hashKey, Map.Entry<String,AttributeValue> rangeKey)
          The primary key that defines the item.
 UpdateItemRequest UpdateItemRequest.withKey(Map<String,AttributeValue> key)
          The primary key that defines the item.
 UpdateItemRequest UpdateItemRequest.withReturnConsumedCapacity(ReturnConsumedCapacity returnConsumedCapacity)
          If set to TOTAL, the response includes ConsumedCapacity data for tables and indexes.
 UpdateItemRequest UpdateItemRequest.withReturnConsumedCapacity(String returnConsumedCapacity)
          If set to TOTAL, the response includes ConsumedCapacity data for tables and indexes.
 UpdateItemRequest UpdateItemRequest.withReturnItemCollectionMetrics(ReturnItemCollectionMetrics returnItemCollectionMetrics)
          If set to SIZE, statistics about item collections, if any, that were modified during the operation are returned in the response.
 UpdateItemRequest UpdateItemRequest.withReturnItemCollectionMetrics(String returnItemCollectionMetrics)
          If set to SIZE, statistics about item collections, if any, that were modified during the operation are returned in the response.
 UpdateItemRequest UpdateItemRequest.withReturnValues(ReturnValue returnValues)
          Use ReturnValues if you want to get the item attributes as they appeared either before or after they were updated.
 UpdateItemRequest UpdateItemRequest.withReturnValues(String returnValues)
          Use ReturnValues if you want to get the item attributes as they appeared either before or after they were updated.
 UpdateItemRequest UpdateItemRequest.withTableName(String tableName)
          The name of the table containing the item to update.
 



Copyright © 2016. All rights reserved.