Uses of Class
com.amazonaws.services.dynamodbv2.model.WriteRequest
Packages that use WriteRequest
Package
Description
-
Uses of WriteRequest in com.amazonaws.services.dynamodbv2
Method parameters in com.amazonaws.services.dynamodbv2 with type arguments of type WriteRequestModifier and TypeMethodDescriptionAbstractAmazonDynamoDB.batchWriteItem(Map<String, List<WriteRequest>> requestItems) AmazonDynamoDB.batchWriteItem(Map<String, List<WriteRequest>> requestItems) Simplified method form for invoking the BatchWriteItem operation.AmazonDynamoDBClient.batchWriteItem(Map<String, List<WriteRequest>> requestItems) AbstractAmazonDynamoDBAsync.batchWriteItemAsync(Map<String, List<WriteRequest>> requestItems) Simplified method form for invoking the BatchWriteItem operation.AbstractAmazonDynamoDBAsync.batchWriteItemAsync(Map<String, List<WriteRequest>> requestItems, AsyncHandler<BatchWriteItemRequest, BatchWriteItemResult> asyncHandler) Simplified method form for invoking the BatchWriteItem operation with an AsyncHandler.AmazonDynamoDBAsync.batchWriteItemAsync(Map<String, List<WriteRequest>> requestItems) Simplified method form for invoking the BatchWriteItem operation.AmazonDynamoDBAsync.batchWriteItemAsync(Map<String, List<WriteRequest>> requestItems, AsyncHandler<BatchWriteItemRequest, BatchWriteItemResult> asyncHandler) Simplified method form for invoking the BatchWriteItem operation with an AsyncHandler.AmazonDynamoDBAsyncClient.batchWriteItemAsync(Map<String, List<WriteRequest>> requestItems) Simplified method form for invoking the BatchWriteItem operation.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 WriteRequestMethod parameters in com.amazonaws.services.dynamodbv2.datamodeling with type arguments of type WriteRequestModifier and TypeMethodDescriptionlongDynamoDBMapperConfig.BatchWriteRetryStrategy.getDelayBeforeRetryUnprocessedItems(Map<String, List<WriteRequest>> unprocessedItems, int retriesAttempted) Returns the delay (in milliseconds) before retrying on UnprocessedItems.longDynamoDBMapperConfig.DefaultBatchWriteRetryStrategy.getDelayBeforeRetryUnprocessedItems(Map<String, List<WriteRequest>> unprocessedItems, int retriesAttempted) intDynamoDBMapperConfig.BatchWriteRetryStrategy.getMaxRetryOnUnprocessedItems(Map<String, List<WriteRequest>> batchWriteItemInput) Returns the max number of retries to be performed if the service returns UnprocessedItems in the response.intDynamoDBMapperConfig.DefaultBatchWriteRetryStrategy.getMaxRetryOnUnprocessedItems(Map<String, List<WriteRequest>> batchWriteItemInput) voidDynamoDBMapper.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 WriteRequestModifier and TypeMethodDescriptionBatchWriteItemOutcome.getUnprocessedItems()Convenient method to return the low-level unprocessed items.Method parameters in com.amazonaws.services.dynamodbv2.document with type arguments of type WriteRequestModifier and TypeMethodDescriptionDynamoDB.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 WriteRequestModifier and TypeMethodDescriptionBatchWriteItemApi.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 WriteRequestMethod parameters in com.amazonaws.services.dynamodbv2.document.spec with type arguments of type WriteRequestModifier and TypeMethodDescriptionBatchWriteItemSpec.withUnprocessedItems(Map<String, List<WriteRequest>> unprocessedItems) -
Uses of WriteRequest in com.amazonaws.services.dynamodbv2.model
Methods in com.amazonaws.services.dynamodbv2.model that return WriteRequestModifier and TypeMethodDescriptionWriteRequest.clone()WriteRequest.withDeleteRequest(DeleteRequest deleteRequest) A request to perform a DeleteItem operation.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 WriteRequestModifier and TypeMethodDescriptionBatchWriteItemRequest.getRequestItems()A map of one or more table names and, for each table, a list of operations to be performed (DeleteRequest or PutRequest).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 WriteRequestModifier and TypeMethodDescriptionBatchWriteItemRequest.addRequestItemsEntry(String key, List<WriteRequest> value) BatchWriteItemResult.addUnprocessedItemsEntry(String key, List<WriteRequest> value) voidBatchWriteItemRequest.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).voidBatchWriteItemResult.setUnprocessedItems(Map<String, List<WriteRequest>> unprocessedItems) A map of tables and requests against those tables that were not processed.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.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 WriteRequestModifierConstructorDescriptionBatchWriteItemRequest(Map<String, List<WriteRequest>> requestItems) Constructs a new BatchWriteItemRequest object.