Complete the code to create a standard SQS queue using AWS CLI.
aws sqs create-queue --queue-name [1]Standard queues do not require the .fifo suffix in the name.
Complete the code to create a FIFO SQS queue with content-based deduplication enabled.
aws sqs create-queue --queue-name [1] --attributes ContentBasedDeduplication=trueFIFO queues must have names ending with .fifo and can enable content-based deduplication.
Fix the error in the AWS CLI command to create a FIFO queue missing the required suffix.
aws sqs create-queue --queue-name [1] --attributes FifoQueue=trueFIFO queues require the .fifo suffix in the queue name to be valid.
Fill both blanks to create a FIFO queue with the correct name and enable FIFO attribute.
aws sqs create-queue --queue-name [1] --attributes [2]=true
The queue name must end with .fifo and the attribute FifoQueue must be set to true for FIFO queues.
Fill all three blanks to create a FIFO queue with content-based deduplication enabled and the correct name.
aws sqs create-queue --queue-name [1] --attributes [2]=true,[3]=true
FIFO queues require the .fifo suffix in the name, and both FifoQueue and ContentBasedDeduplication attributes can be set to true.