I will post some Developer content from now on, with a focus to some easy but helpful tasks when working with various Cloud Platforms. These tips will be named after the service (e.g. Amazon Web Services for AWS, …)
The first tip I want to show is how to retrieve the full queue URL when you already have the queue name:
sqs.getQueueUrl(new GetQueueUrlRequest().withQueueName("myqueue")).getQueueUrl();
The function “getQueueUrl()” already returns a String-representation and not a URI itself (this is what I would rather expect in that case)
Leave a Reply
Want to join the discussion?Feel free to contribute!