// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UntagResource`](crate::operation::untag_resource::builders::UntagResourceFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`resource_arn(impl Into<String>)`](crate::operation::untag_resource::builders::UntagResourceFluentBuilder::resource_arn) / [`set_resource_arn(Option<String>)`](crate::operation::untag_resource::builders::UntagResourceFluentBuilder::set_resource_arn):<br>required: **true**<br><p>The ARN of the resource to untag.</p><br>
/// - [`rule_revision(i64)`](crate::operation::untag_resource::builders::UntagResourceFluentBuilder::rule_revision) / [`set_rule_revision(Option<i64>)`](crate::operation::untag_resource::builders::UntagResourceFluentBuilder::set_rule_revision):<br>required: **true**<br><p>The revision number of the automation rule to untag. This ensures you're untagging the correct version of the rule.</p><br>
/// - [`tag_keys(impl Into<String>)`](crate::operation::untag_resource::builders::UntagResourceFluentBuilder::tag_keys) / [`set_tag_keys(Option<Vec::<String>>)`](crate::operation::untag_resource::builders::UntagResourceFluentBuilder::set_tag_keys):<br>required: **true**<br><p>The keys of the tags to remove from the resource.</p><br>
/// - [`client_token(impl Into<String>)`](crate::operation::untag_resource::builders::UntagResourceFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::untag_resource::builders::UntagResourceFluentBuilder::set_client_token):<br>required: **false**<br><p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Must be 1-64 characters long and contain only alphanumeric characters, underscores, and hyphens.</p><br>
/// - On success, responds with [`UntagResourceOutput`](crate::operation::untag_resource::UntagResourceOutput)
/// - On failure, responds with [`SdkError<UntagResourceError>`](crate::operation::untag_resource::UntagResourceError)
pub fn untag_resource(&self) -> crate::operation::untag_resource::builders::UntagResourceFluentBuilder {
crate::operation::untag_resource::builders::UntagResourceFluentBuilder::new(self.handle.clone())
}
}