Example usage for com.amazonaws.services.simpledb.model BatchPutAttributesRequest BatchPutAttributesRequest

List of usage examples for com.amazonaws.services.simpledb.model BatchPutAttributesRequest BatchPutAttributesRequest

Introduction

In this page you can find the example usage for com.amazonaws.services.simpledb.model BatchPutAttributesRequest BatchPutAttributesRequest.

Prototype

public BatchPutAttributesRequest() 

Source Link

Document

Default constructor for BatchPutAttributesRequest object.

Usage

From source file:org.apache.camel.component.aws.sdb.BatchPutAttributesCommand.java

License:Apache License

public void execute() {
    BatchPutAttributesRequest request = new BatchPutAttributesRequest().withDomainName(determineDomainName())
            .withItems(determineReplaceableItems());
    log.trace("Sending request [{}] for exchange [{}]...", request, exchange);

    this.sdbClient.batchPutAttributes(request);

    log.trace("Request sent");
}