Get the url of the queue using below command where queuename is the name of the queue. aws sqs get-queue-url
Continue readingMonth: August 2020
How to send a message to an SQS queue
Login to the AWS Management Console and search for SQS service. Select the queue that you would like to send
Continue readingHow to create an S3 bucket from AWS CLI
Using high level s3 commands: aws s3 mb s3://bucketname Using S3 api commands: aws s3api create-bucket –bucket bucketname –region regionname
Continue readingHow to purge an SQS queue from AWS CLI
To delete all the messages in an SQS queue without deleting the queue itself, use the purge option as below:
Continue readingHow to purge messages from an SQS queue from AWS Management Console
Login to the AWS Management Console and navigate to ‘Simple Queue Service’ SQS. on the SQS dashboard, select the queue
Continue readingHow to delete unused EBS volumes from AWS CLI to save on cost
Use the below command to generate a list of volume id’s of all detached EBS volumes. aws ec2 describe-volumes –filter
Continue reading