Skip to main content

aws_sdk_emr/client/
remove_tags.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`RemoveTags`](crate::operation::remove_tags::builders::RemoveTagsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`resource_id(impl Into<String>)`](crate::operation::remove_tags::builders::RemoveTagsFluentBuilder::resource_id) / [`set_resource_id(Option<String>)`](crate::operation::remove_tags::builders::RemoveTagsFluentBuilder::set_resource_id):<br>required: **true**<br><p>The Amazon EMR resource identifier from which tags will be removed. For example, a cluster identifier or an Amazon EMR Studio ID.</p><br>
7    ///   - [`tag_keys(impl Into<String>)`](crate::operation::remove_tags::builders::RemoveTagsFluentBuilder::tag_keys) / [`set_tag_keys(Option<Vec::<String>>)`](crate::operation::remove_tags::builders::RemoveTagsFluentBuilder::set_tag_keys):<br>required: **true**<br><p>A list of tag keys to remove from the resource.</p><br>
8    /// - On success, responds with [`RemoveTagsOutput`](crate::operation::remove_tags::RemoveTagsOutput)
9    /// - On failure, responds with [`SdkError<RemoveTagsError>`](crate::operation::remove_tags::RemoveTagsError)
10    pub fn remove_tags(&self) -> crate::operation::remove_tags::builders::RemoveTagsFluentBuilder {
11        crate::operation::remove_tags::builders::RemoveTagsFluentBuilder::new(self.handle.clone())
12    }
13}