How to create an SQS queue from AWS CLI

Use the below command to create a new queue where queuename is the name of the queue being created.

create-queue --queue-name queuename

To create a FIFO queue, use .fifo suffix for the queue name as below:

create-queue --queue-name queuename.fifo
See also  How to attach policy to an IAM user