The DeleteQueue action deletes the queue specified by the queue URL, regardless of whether the queue is empty.
If the specified queue does not exist, SQS returns a successful response. Use DeleteQueue with care; once you
delete your queue, any messages in the queue are no longer available.
When you delete a queue, the deletion process takes up to 60 seconds. Requests you send involving that queue
during the 60 seconds might succeed. For example, a SendMessage request might succeed, but after the 60 seconds,
the queue and that message you sent no longer exist. Also, when you delete a queue, you must wait at least 60 seconds
before creating a queue with the same name.
We reserve the right to delete queues that have had no activity for more than 30 days.
Namespace: Amazon.SQS.ModelAssembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)
Syntax
| C# | Visual Basic | Visual C++ |
public class DeleteQueueRequest
Public Class DeleteQueueRequest
public ref class DeleteQueueRequest
Members
| All Members | Constructors | Properties | Methods |
| Member | Description | |
|---|---|---|
| DeleteQueueRequest()()()() | Initializes a new instance of the DeleteQueueRequest class | |
| Attribute |
Gets and sets the Attribute property.
Name and value pair of an attribute associated with the queue.
| |
| Equals(Object) | (Inherited from Object.) | |
| GetHashCode()()()() |
Serves as a hash function for a particular type.
(Inherited from Object.) | |
| GetType()()()() |
Gets the Type of the current instance.
(Inherited from Object.) | |
| IsSetAttribute()()()() |
Checks if Attribute property is set
| |
| IsSetQueueUrl()()()() |
Checks if QueueUrl property is set
| |
| QueueUrl |
Gets and sets the QueueUrl property.
The URL associated with the Amazon SQS queue.
| |
| ToString()()()() | (Inherited from Object.) | |
| WithAttribute(array<Attribute>[]()[][]) |
Sets the Attribute property
| |
| WithQueueUrl(String) |
Sets the QueueUrl property
|