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.
See the Spring AWS Example README.md for steps to use this yourself.