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 [`TagQueue`](crate::operation::tag_queue::builders::TagQueueFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`queue_url(impl Into<String>)`](crate::operation::tag_queue::builders::TagQueueFluentBuilder::queue_url) / [`set_queue_url(Option<String>)`](crate::operation::tag_queue::builders::TagQueueFluentBuilder::set_queue_url):<br>required: **true**<br><p>The URL of the queue.</p><br>
    ///   - [`tags(impl Into<String>, impl Into<String>)`](crate::operation::tag_queue::builders::TagQueueFluentBuilder::tags) / [`set_tags(Option<HashMap::<String, String>>)`](crate::operation::tag_queue::builders::TagQueueFluentBuilder::set_tags):<br>required: **true**<br><p>The list of tags to be added to the specified queue.</p><br>
    /// - On success, responds with [`TagQueueOutput`](crate::operation::tag_queue::TagQueueOutput)
    /// - On failure, responds with [`SdkError<TagQueueError>`](crate::operation::tag_queue::TagQueueError)
    pub fn tag_queue(&self) -> crate::operation::tag_queue::builders::TagQueueFluentBuilder {
        crate::operation::tag_queue::builders::TagQueueFluentBuilder::new(self.handle.clone())
    }
}