#[non_exhaustive]pub struct UntagResourceInput { /* private fields */ }
Implementations
sourceimpl UntagResourceInput
impl UntagResourceInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UntagResource, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UntagResource, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UntagResource
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UntagResourceInput
.
sourceimpl UntagResourceInput
impl UntagResourceInput
sourcepub fn resource_arn(&self) -> Option<&str>
pub fn resource_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the application that you want to remove one or more tags from.
sourcepub fn tag_keys(&self) -> Option<&[String]>
pub fn tag_keys(&self) -> Option<&[String]>
The tags (tag keys) that you want to remove from the resource. When you specify a tag key, the action removes both that key and its associated tag value.
To remove more than one tag from the application, append the TagKeys
parameter and argument for each additional tag to remove, separated by an ampersand.
Trait Implementations
sourceimpl Clone for UntagResourceInput
impl Clone for UntagResourceInput
sourcefn clone(&self) -> UntagResourceInput
fn clone(&self) -> UntagResourceInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for UntagResourceInput
impl Debug for UntagResourceInput
sourceimpl PartialEq<UntagResourceInput> for UntagResourceInput
impl PartialEq<UntagResourceInput> for UntagResourceInput
sourcefn eq(&self, other: &UntagResourceInput) -> bool
fn eq(&self, other: &UntagResourceInput) -> bool
impl StructuralPartialEq for UntagResourceInput
Auto Trait Implementations
impl RefUnwindSafe for UntagResourceInput
impl Send for UntagResourceInput
impl Sync for UntagResourceInput
impl Unpin for UntagResourceInput
impl UnwindSafe for UntagResourceInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more