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 [`GetTags`](crate::operation::get_tags::builders::GetTagsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`resource_arn(impl Into<String>)`](crate::operation::get_tags::builders::GetTagsFluentBuilder::resource_arn) / [`set_resource_arn(Option<String>)`](crate::operation::get_tags::builders::GetTagsFluentBuilder::set_resource_arn):<br>required: **true**<br><p>The resource ARN for the tag.</p><br>
    /// - On success, responds with [`GetTagsOutput`](crate::operation::get_tags::GetTagsOutput) with field(s):
    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_tags::GetTagsOutput::tags): <p>Represents a collection of tags associated with the resource.</p>
    /// - On failure, responds with [`SdkError<GetTagsError>`](crate::operation::get_tags::GetTagsError)
    pub fn get_tags(&self) -> crate::operation::get_tags::builders::GetTagsFluentBuilder {
        crate::operation::get_tags::builders::GetTagsFluentBuilder::new(self.handle.clone())
    }
}