1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteMessage`](crate::operation::delete_message::builders::DeleteMessageFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`queue_url(impl Into<String>)`](crate::operation::delete_message::builders::DeleteMessageFluentBuilder::queue_url) / [`set_queue_url(Option<String>)`](crate::operation::delete_message::builders::DeleteMessageFluentBuilder::set_queue_url):<br>required: **true**<br><p>The URL of the Amazon SQS queue from which messages are deleted.</p> <p>Queue URLs and names are case-sensitive.</p><br>
    ///   - [`receipt_handle(impl Into<String>)`](crate::operation::delete_message::builders::DeleteMessageFluentBuilder::receipt_handle) / [`set_receipt_handle(Option<String>)`](crate::operation::delete_message::builders::DeleteMessageFluentBuilder::set_receipt_handle):<br>required: **true**<br><p>The receipt handle associated with the message to delete.</p><br>
    /// - On success, responds with [`DeleteMessageOutput`](crate::operation::delete_message::DeleteMessageOutput)
    /// - On failure, responds with [`SdkError<DeleteMessageError>`](crate::operation::delete_message::DeleteMessageError)
    pub fn delete_message(&self) -> crate::operation::delete_message::builders::DeleteMessageFluentBuilder {
        crate::operation::delete_message::builders::DeleteMessageFluentBuilder::new(self.handle.clone())
    }
}