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 [`RemoveTags`](crate::operation::remove_tags::builders::RemoveTagsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>Specifies the ARN of the trail, event data store, or channel from which tags should be removed.</p> <p>Example trail ARN format: <code>arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail</code></p> <p>Example event data store ARN format: <code>arn:aws:cloudtrail:us-east-2:123456789012:eventdatastore/EXAMPLE-f852-4e8f-8bd1-bcf6cEXAMPLE</code></p> <p>Example channel ARN format: <code>arn:aws:cloudtrail:us-east-2:123456789012:channel/01234567890</code></p><br>
    ///   - [`tags_list(Tag)`](crate::operation::remove_tags::builders::RemoveTagsFluentBuilder::tags_list) / [`set_tags_list(Option<Vec::<Tag>>)`](crate::operation::remove_tags::builders::RemoveTagsFluentBuilder::set_tags_list):<br>required: **true**<br><p>Specifies a list of tags to be removed.</p><br>
    /// - On success, responds with [`RemoveTagsOutput`](crate::operation::remove_tags::RemoveTagsOutput)
    /// - On failure, responds with [`SdkError<RemoveTagsError>`](crate::operation::remove_tags::RemoveTagsError)
    pub fn remove_tags(&self) -> crate::operation::remove_tags::builders::RemoveTagsFluentBuilder {
        crate::operation::remove_tags::builders::RemoveTagsFluentBuilder::new(self.handle.clone())
    }
}