amazonka-sqs-0.0.7: Amazon Simple Queue Service SDK.

Safe HaskellNone
LanguageHaskell2010

Network.AWS.SQS.DeleteMessage

Contents

Description

Deletes the specified message from the specified queue. You specify the message by using the message's 'receipt handle' and not the 'message ID' you received when you sent the message. Even if the message is locked by another reader due to the visibility timeout setting, it is still deleted from the queue. If you leave a message in the queue for longer than the queue's configured retention period, Amazon SQS automatically deletes it.

It is possible you will receive a message even after you have deleted it. This might happen on rare occasions if one of the servers storing a copy of the message is unavailable when you request to delete the message. The copy remains on the server and might be returned to you again on a subsequent receive request. You should create your system to be idempotent so that receiving a particular message more than once is not a problem.

http://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_DeleteMessage.html

Synopsis

Request

Request constructor

deleteMessage Source

DeleteMessage constructor.

The fields accessible through corresponding lenses are:

Request lenses

dmQueueUrl :: Lens' DeleteMessage Text Source

The URL of the Amazon SQS queue to take action on.

dmReceiptHandle :: Lens' DeleteMessage Text Source

The receipt handle associated with the message to delete.

Response

Response constructor