Struct aws_sdk_sqs::client::fluent_builders::DeleteQueue
source · pub struct DeleteQueue { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteQueue
.
Deletes the queue specified by the QueueUrl
, regardless of the queue's contents.
Be careful with the DeleteQueue
action: When you delete a 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
request might succeed, but after 60 seconds the queue and the message you sent no longer exist.SendMessage
When you delete a queue, you must wait at least 60 seconds before creating a queue with the same name.
Cross-account permissions don't apply to this action. For more information, see Grant cross-account permissions to a role and a user name in the Amazon SQS Developer Guide.
Implementations§
source§impl DeleteQueue
impl DeleteQueue
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DeleteQueue, AwsResponseRetryClassifier>, SdkError<DeleteQueueError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<DeleteQueue, AwsResponseRetryClassifier>, SdkError<DeleteQueueError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(self) -> Result<DeleteQueueOutput, SdkError<DeleteQueueError>>
pub async fn send(self) -> Result<DeleteQueueOutput, SdkError<DeleteQueueError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn queue_url(self, input: impl Into<String>) -> Self
pub fn queue_url(self, input: impl Into<String>) -> Self
The URL of the Amazon SQS queue to delete.
Queue URLs and names are case-sensitive.
sourcepub fn set_queue_url(self, input: Option<String>) -> Self
pub fn set_queue_url(self, input: Option<String>) -> Self
The URL of the Amazon SQS queue to delete.
Queue URLs and names are case-sensitive.
Trait Implementations§
source§impl Clone for DeleteQueue
impl Clone for DeleteQueue
source§fn clone(&self) -> DeleteQueue
fn clone(&self) -> DeleteQueue
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more