Struct aws_sdk_athena::client::fluent_builders::UntagResource
source · pub struct UntagResource { /* private fields */ }
Expand description
Fluent builder constructing a request to UntagResource
.
Removes one or more tags from a data catalog or workgroup resource.
Implementations§
source§impl UntagResource
impl UntagResource
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UntagResource, AwsResponseRetryClassifier>, SdkError<UntagResourceError>>
pub async fn customize( self ) -> Result<CustomizableOperation<UntagResource, AwsResponseRetryClassifier>, SdkError<UntagResourceError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UntagResourceOutput, SdkError<UntagResourceError>>
pub async fn send( self ) -> Result<UntagResourceOutput, SdkError<UntagResourceError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn resource_arn(self, input: impl Into<String>) -> Self
pub fn resource_arn(self, input: impl Into<String>) -> Self
Specifies the ARN of the resource from which tags are to be removed.
sourcepub fn set_resource_arn(self, input: Option<String>) -> Self
pub fn set_resource_arn(self, input: Option<String>) -> Self
Specifies the ARN of the resource from which tags are to be removed.
sourcepub fn tag_keys(self, input: impl Into<String>) -> Self
pub fn tag_keys(self, input: impl Into<String>) -> Self
Appends an item to TagKeys
.
To override the contents of this collection use set_tag_keys
.
A comma-separated list of one or more tag keys whose tags are to be removed from the specified resource.
sourcepub fn set_tag_keys(self, input: Option<Vec<String>>) -> Self
pub fn set_tag_keys(self, input: Option<Vec<String>>) -> Self
A comma-separated list of one or more tag keys whose tags are to be removed from the specified resource.
Trait Implementations§
source§impl Clone for UntagResource
impl Clone for UntagResource
source§fn clone(&self) -> UntagResource
fn clone(&self) -> UntagResource
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more