public BatchPutAttributesCommand(AmazonSimpleDB sdbClient, SdbConfiguration configuration, Exchange exchange) {
super(sdbClient, configuration, exchange);
}
public void execute() {
BatchPutAttributesRequest request = new BatchPutAttributesRequest()
.withDomainName(determineDomainName())
.withItems(determineReplaceableItems());
log.trace("Sending request [{}] for exchange [{}]...", request, exchange);
this.sdbClient.batchPutAttributes(request);