Skip to content

architsmat38/golang-aws-sqs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

golang-aws-sqs

GitHub license

AWS SQS Helper - Provides functionality to send, receive, delete, purge messages. It also helps in processing messages and send them in batches to SQS.

There is a SQS queue poller as well which receives messages in batches from SQS queue and provides functionality to handle each message individually.

Refer to example/main.go, in order to get a better understanding of the usage of this helper.

AWS SQS Config

You will need to specify the following keys in order to connect to an AWS SQS queue.

var (
    accessKeyId     string = "xxxxxxxxxxxxxxxxx"
    secretKey       string = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
    region          string = "xxxxxxxxxxxxxxxxx"
    queueName       string = "xxxxxxxxxxxxxxxxx"
)

Reference

Releases

No releases published

Packages

No packages published

Languages