pub struct UntagResourcesInput {
pub resource_arn_list: Vec<String>,
pub tag_keys: Vec<String>,
}
Fields§
§resource_arn_list: Vec<String>
Specifies a list of ARNs of the resources that you want to remove tags from.
An ARN (Amazon Resource Name) uniquely identifies a resource. For more information, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference.
tag_keys: Vec<String>
Specifies a list of tag keys that you want to remove from the specified resources.
Trait Implementations§
Source§impl Clone for UntagResourcesInput
impl Clone for UntagResourcesInput
Source§fn clone(&self) -> UntagResourcesInput
fn clone(&self) -> UntagResourcesInput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UntagResourcesInput
impl Debug for UntagResourcesInput
Source§impl Default for UntagResourcesInput
impl Default for UntagResourcesInput
Source§fn default() -> UntagResourcesInput
fn default() -> UntagResourcesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UntagResourcesInput
impl PartialEq for UntagResourcesInput
Source§impl Serialize for UntagResourcesInput
impl Serialize for UntagResourcesInput
impl StructuralPartialEq for UntagResourcesInput
Auto Trait Implementations§
impl Freeze for UntagResourcesInput
impl RefUnwindSafe for UntagResourcesInput
impl Send for UntagResourcesInput
impl Sync for UntagResourcesInput
impl Unpin for UntagResourcesInput
impl UnwindSafe for UntagResourcesInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more