aws sqs to read and write to a queue
To create a cloud formation sqs, we can use the following code AWSTemplateFormatVersion : ' 2010-09-09 ' Description : ' Creates SQS Queue with specific User Access ' Parameters : AccountId : Type : String Description : Your 12-digit AWS Account ID Default : ' 00000000 ' UserName : Type : String Description : IAM User to grant access Default : ' jeremydev ' Resources : MySQSQueue : Type : AWS::SQS::Queue Properties : QueueName : mytestsqs1 VisibilityTimeout : 300 MySQSQueuePolicy : Type : AWS::SQS::QueuePolicy Properties : Queues : - ! Ref MySQSQueue PolicyDocument : Version : ' 2012-10-17 ' Statement : - Sid : Allo...