Uses of Class
com.amazonaws.services.dynamodbv2.model.WriteRequest
-
-
Uses of WriteRequest in com.amazonaws.services.dynamodbv2
Method parameters in com.amazonaws.services.dynamodbv2 with type arguments of type WriteRequest Modifier and Type Method Description BatchWriteItemResult
AbstractAmazonDynamoDB. batchWriteItem(Map<String,List<WriteRequest>> requestItems)
BatchWriteItemResult
AmazonDynamoDB. batchWriteItem(Map<String,List<WriteRequest>> requestItems)
Simplified method form for invoking the BatchWriteItem operation.BatchWriteItemResult
AmazonDynamoDBClient. batchWriteItem(Map<String,List<WriteRequest>> requestItems)
Future<BatchWriteItemResult>
AbstractAmazonDynamoDBAsync. batchWriteItemAsync(Map<String,List<WriteRequest>> requestItems)
Simplified method form for invoking the BatchWriteItem operation.Future<BatchWriteItemResult>
AbstractAmazonDynamoDBAsync. batchWriteItemAsync(Map<String,List<WriteRequest>> requestItems, AsyncHandler<BatchWriteItemRequest,BatchWriteItemResult> asyncHandler)
Simplified method form for invoking the BatchWriteItem operation with an AsyncHandler.Future<BatchWriteItemResult>
AmazonDynamoDBAsync. batchWriteItemAsync(Map<String,List<WriteRequest>> requestItems)
Simplified method form for invoking the BatchWriteItem operation.Future<BatchWriteItemResult>
AmazonDynamoDBAsync. batchWriteItemAsync(Map<String,List<WriteRequest>> requestItems, AsyncHandler<BatchWriteItemRequest,BatchWriteItemResult> asyncHandler)
Simplified method form for invoking the BatchWriteItem operation with an AsyncHandler.Future<BatchWriteItemResult>
AmazonDynamoDBAsyncClient. batchWriteItemAsync(Map<String,List<WriteRequest>> requestItems)
Simplified method form for invoking the BatchWriteItem operation.Future<BatchWriteItemResult>
AmazonDynamoDBAsyncClient. batchWriteItemAsync(Map<String,List<WriteRequest>> requestItems, AsyncHandler<BatchWriteItemRequest,BatchWriteItemResult> asyncHandler)
Simplified method form for invoking the BatchWriteItem operation with an AsyncHandler. -
Uses of WriteRequest in com.amazonaws.services.dynamodbv2.datamodeling
Methods in com.amazonaws.services.dynamodbv2.datamodeling that return types with arguments of type WriteRequest Modifier and Type Method Description Map<String,List<WriteRequest>>
DynamoDBMapper.FailedBatch. getUnprocessedItems()
Method parameters in com.amazonaws.services.dynamodbv2.datamodeling with type arguments of type WriteRequest Modifier and Type Method Description long
DynamoDBMapperConfig.BatchWriteRetryStrategy. getDelayBeforeRetryUnprocessedItems(Map<String,List<WriteRequest>> unprocessedItems, int retriesAttempted)
Returns the delay (in milliseconds) before retrying on UnprocessedItems.long
DynamoDBMapperConfig.DefaultBatchWriteRetryStrategy. getDelayBeforeRetryUnprocessedItems(Map<String,List<WriteRequest>> unprocessedItems, int retriesAttempted)
int
DynamoDBMapperConfig.BatchWriteRetryStrategy. getMaxRetryOnUnprocessedItems(Map<String,List<WriteRequest>> batchWriteItemInput)
Returns the max number of retries to be performed if the service returns UnprocessedItems in the response.int
DynamoDBMapperConfig.DefaultBatchWriteRetryStrategy. getMaxRetryOnUnprocessedItems(Map<String,List<WriteRequest>> batchWriteItemInput)
void
DynamoDBMapper.FailedBatch. setUnprocessedItems(Map<String,List<WriteRequest>> unprocessedItems)
-
Uses of WriteRequest in com.amazonaws.services.dynamodbv2.document
Methods in com.amazonaws.services.dynamodbv2.document that return types with arguments of type WriteRequest Modifier and Type Method Description Map<String,List<WriteRequest>>
BatchWriteItemOutcome. getUnprocessedItems()
Convenient method to return the low-level unprocessed items.Method parameters in com.amazonaws.services.dynamodbv2.document with type arguments of type WriteRequest Modifier and Type Method Description BatchWriteItemOutcome
DynamoDB. batchWriteItemUnprocessed(Map<String,List<WriteRequest>> unprocessedItems)
-
Uses of WriteRequest in com.amazonaws.services.dynamodbv2.document.api
Method parameters in com.amazonaws.services.dynamodbv2.document.api with type arguments of type WriteRequest Modifier and Type Method Description BatchWriteItemOutcome
BatchWriteItemApi. batchWriteItemUnprocessed(Map<String,List<WriteRequest>> unprocessedItems)
Used to perform a batch write operation for the unprocessed items returned from a previous batch write operation. -
Uses of WriteRequest in com.amazonaws.services.dynamodbv2.document.spec
Methods in com.amazonaws.services.dynamodbv2.document.spec that return types with arguments of type WriteRequest Modifier and Type Method Description Map<String,List<WriteRequest>>
BatchWriteItemSpec. getUnprocessedItems()
Method parameters in com.amazonaws.services.dynamodbv2.document.spec with type arguments of type WriteRequest Modifier and Type Method Description BatchWriteItemSpec
BatchWriteItemSpec. withUnprocessedItems(Map<String,List<WriteRequest>> unprocessedItems)
-
Uses of WriteRequest in com.amazonaws.services.dynamodbv2.model
Methods in com.amazonaws.services.dynamodbv2.model that return WriteRequest Modifier and Type Method Description WriteRequest
WriteRequest. clone()
WriteRequest
WriteRequest. withDeleteRequest(DeleteRequest deleteRequest)
A request to perform a DeleteItem operation.WriteRequest
WriteRequest. withPutRequest(PutRequest putRequest)
A request to perform a PutItem operation.Methods in com.amazonaws.services.dynamodbv2.model that return types with arguments of type WriteRequest Modifier and Type Method Description Map<String,List<WriteRequest>>
BatchWriteItemRequest. getRequestItems()
A map of one or more table names and, for each table, a list of operations to be performed (DeleteRequest or PutRequest).Map<String,List<WriteRequest>>
BatchWriteItemResult. getUnprocessedItems()
A map of tables and requests against those tables that were not processed.Method parameters in com.amazonaws.services.dynamodbv2.model with type arguments of type WriteRequest Modifier and Type Method Description BatchWriteItemRequest
BatchWriteItemRequest. addRequestItemsEntry(String key, List<WriteRequest> value)
BatchWriteItemResult
BatchWriteItemResult. addUnprocessedItemsEntry(String key, List<WriteRequest> value)
void
BatchWriteItemRequest. setRequestItems(Map<String,List<WriteRequest>> requestItems)
A map of one or more table names and, for each table, a list of operations to be performed (DeleteRequest or PutRequest).void
BatchWriteItemResult. setUnprocessedItems(Map<String,List<WriteRequest>> unprocessedItems)
A map of tables and requests against those tables that were not processed.BatchWriteItemRequest
BatchWriteItemRequest. withRequestItems(Map<String,List<WriteRequest>> requestItems)
A map of one or more table names and, for each table, a list of operations to be performed (DeleteRequest or PutRequest).BatchWriteItemResult
BatchWriteItemResult. withUnprocessedItems(Map<String,List<WriteRequest>> unprocessedItems)
A map of tables and requests against those tables that were not processed.Constructor parameters in com.amazonaws.services.dynamodbv2.model with type arguments of type WriteRequest Constructor Description BatchWriteItemRequest(Map<String,List<WriteRequest>> requestItems)
Constructs a new BatchWriteItemRequest object.
-