Can anyone help me with creating a fifo queue in sqs using boto3. Tried this but this doesn’t work
sqs.create_queue(QueueName='test', Attributes={'FifoQueue':'true’})
Can anyone help me with creating a fifo queue in sqs using boto3. Tried this but this doesn’t work
sqs.create_queue(QueueName='test', Attributes={'FifoQueue':'true’})
Your queue name has to end in
.fifoand you have to be using eitherus-west-2orus-east-2region as those are the only regions that currently support the FIFO feature.