if (LOG.isTraceEnabled()) {
LOG.trace("Creating queue [" + configuration.getQueueName() + "] with request [" + request + "]...");
}
CreateQueueResult queueResult = client.createQueue(request);
queueUrl = queueResult.getQueueUrl();
LOG.trace("Queue created and available at: {}", queueUrl);
// According to the documentation, only one setting can be made at a time, even though they go into a Map.
if (getConfiguration().getDefaultVisibilityTimeout() != null) {