Which of the below mentioned operations is not supported by SQS?
SendMessageBatch
DeleteMessageBatch
CreateQueue
DeleteMessageQueue
Explanations:
SendMessageBatchis supported by SQS and allows users to send multiple messages in a single API call, up to 10 messages at a time.
DeleteMessageBatchis supported by SQS and allows users to delete multiple messages from a queue in a single API call, up to 10 messages at a time.
CreateQueueis a supported operation in SQS that allows users to create a new queue with specified attributes.
DeleteMessageQueueis not a valid operation in SQS; the correct operation to delete messages isDeleteMessage, and there is no operation calledDeleteMessageQueue.