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

Packages that use DeleteItemRequest
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 DeleteItemRequest in com.amazonaws.services.dynamodbv2
 

Methods in com.amazonaws.services.dynamodbv2 with parameters of type DeleteItemRequest
 DeleteItemResult AmazonDynamoDBClient.deleteItem(DeleteItemRequest deleteItemRequest)
           Deletes a single item in a table by primary key.
 DeleteItemResult AmazonDynamoDB.deleteItem(DeleteItemRequest deleteItemRequest)
           Deletes a single item in a table by primary key.
 Future<DeleteItemResult> AmazonDynamoDBAsyncClient.deleteItemAsync(DeleteItemRequest deleteItemRequest)
           Deletes a single item in a table by primary key.
 Future<DeleteItemResult> AmazonDynamoDBAsync.deleteItemAsync(DeleteItemRequest deleteItemRequest)
           Deletes a single item in a table by primary key.
 Future<DeleteItemResult> AmazonDynamoDBAsyncClient.deleteItemAsync(DeleteItemRequest deleteItemRequest, AsyncHandler<DeleteItemRequest,DeleteItemResult> asyncHandler)
           Deletes a single item in a table by primary key.
 Future<DeleteItemResult> AmazonDynamoDBAsync.deleteItemAsync(DeleteItemRequest deleteItemRequest, AsyncHandler<DeleteItemRequest,DeleteItemResult> asyncHandler)
           Deletes a single item in a table by primary key.
 

Method parameters in com.amazonaws.services.dynamodbv2 with type arguments of type DeleteItemRequest
 Future<DeleteItemResult> AmazonDynamoDBAsyncClient.deleteItemAsync(DeleteItemRequest deleteItemRequest, AsyncHandler<DeleteItemRequest,DeleteItemResult> asyncHandler)
           Deletes a single item in a table by primary key.
 Future<DeleteItemResult> AmazonDynamoDBAsync.deleteItemAsync(DeleteItemRequest deleteItemRequest, AsyncHandler<DeleteItemRequest,DeleteItemResult> asyncHandler)
           Deletes a single item in a table by primary key.
 

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

Methods in com.amazonaws.services.dynamodbv2.model that return DeleteItemRequest
 DeleteItemRequest DeleteItemRequest.addExpectedEntry(String key, ExpectedAttributeValue value)
          A map of attribute/condition pairs.
 DeleteItemRequest DeleteItemRequest.addKeyEntry(String key, AttributeValue value)
          A map of attribute names to AttributeValue objects, representing the primary key of the item to delete.
 DeleteItemRequest DeleteItemRequest.clearExpectedEntries()
          Removes all the entries added into Expected.
 DeleteItemRequest DeleteItemRequest.clearKeyEntries()
          Removes all the entries added into Key.
 DeleteItemRequest DeleteItemRequest.withConditionalOperator(ConditionalOperator conditionalOperator)
          A logical operator to apply to the conditions in the Expected map:
 DeleteItemRequest DeleteItemRequest.withConditionalOperator(String conditionalOperator)
          A logical operator to apply to the conditions in the Expected map:
 DeleteItemRequest DeleteItemRequest.withExpected(Map<String,ExpectedAttributeValue> expected)
          A map of attribute/condition pairs.
 DeleteItemRequest DeleteItemRequest.withKey(Map.Entry<String,AttributeValue> hashKey, Map.Entry<String,AttributeValue> rangeKey)
          A map of attribute names to AttributeValue objects, representing the primary key of the item to delete.
 DeleteItemRequest DeleteItemRequest.withKey(Map<String,AttributeValue> key)
          A map of attribute names to AttributeValue objects, representing the primary key of the item to delete.
 DeleteItemRequest DeleteItemRequest.withReturnConsumedCapacity(ReturnConsumedCapacity returnConsumedCapacity)
          If set to TOTAL, the response includes ConsumedCapacity data for tables and indexes.
 DeleteItemRequest DeleteItemRequest.withReturnConsumedCapacity(String returnConsumedCapacity)
          If set to TOTAL, the response includes ConsumedCapacity data for tables and indexes.
 DeleteItemRequest DeleteItemRequest.withReturnItemCollectionMetrics(ReturnItemCollectionMetrics returnItemCollectionMetrics)
          If set to SIZE, statistics about item collections, if any, that were modified during the operation are returned in the response.
 DeleteItemRequest DeleteItemRequest.withReturnItemCollectionMetrics(String returnItemCollectionMetrics)
          If set to SIZE, statistics about item collections, if any, that were modified during the operation are returned in the response.
 DeleteItemRequest DeleteItemRequest.withReturnValues(ReturnValue returnValues)
          Use ReturnValues if you want to get the item attributes as they appeared before they were deleted.
 DeleteItemRequest DeleteItemRequest.withReturnValues(String returnValues)
          Use ReturnValues if you want to get the item attributes as they appeared before they were deleted.
 DeleteItemRequest DeleteItemRequest.withTableName(String tableName)
          The name of the table from which to delete the item.
 



Copyright © 2016. All rights reserved.