Setting up Amazon SQS:

Create an AWS account

One you login change the region on top right to required region ( I was using Ireland [eu-west-1])


Create an IAM user

Get your access key ID and secret access key

To use Amazon SQS actions (for example, using Java or through the AWS Command Line Interface), you need an access key ID and a secret access key.

Access key ID: AKIAIOSFODNN7EXAMPLE

Secret access key: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY

Getting started with Amazon SQS:

Create a queue:

Send a message:

After you create your queue, you can send a message to it.

Receive and delete your message

Delete your queue:

The console displays the Delete queuedialog box.

Send and Receive messages using cli:

Example code reference to send, receive and list queues:

https://github.com/awsdocs/aws-doc-sdk-examples/tree/master/javascript/example_code/sqs


Integrate SQS with AWS Lambda:

Send Message from SQS and Receive from Lambda Console


Send a message from Lambda and receive from the Queue:


This page is work in progress and for internal use.