Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 1.03 KB

how-to-connect-to-aws-sqs-queue.md

File metadata and controls

15 lines (11 loc) · 1.03 KB

How to Connect to an AWS SQS Queue

While most of the examples provided in this library use ElasticMQ as the SQS queue, the real application should be using an actual SQS queue. This provides a very high level, generic guide to creating a Queue in AWS which should help you get started. However, the online documentation provided by Amazon would be a better resources for learning about SQS queues, for example I used AWS Documentation - SQS Setting Up myself to write this guide.

In this example we are defining the SQS Properties needed via Environment variables in the application. See SqsAsyncClient#create() for more thorough documentation about different ways to define these properties. The Spring AWS Example will be used for this guide.

Usage

See the Spring AWS Example README.md for steps to use this yourself.