pub struct UntagResourceRequest {
pub arn: String,
pub tag_keys: Vec<String>,
}Fields§
§arn: StringThe value of the resource that will have the tag removed. An Amazon Resource Name (ARN) is an identifier for a specific AWS resource, such as a server, user, or role.
tag_keys: Vec<String>TagKeys are key-value pairs assigned to ARNs that can be used to group and search for resources by type. This metadata can be attached to resources for any purpose.
Trait Implementations§
Source§impl Clone for UntagResourceRequest
impl Clone for UntagResourceRequest
Source§fn clone(&self) -> UntagResourceRequest
fn clone(&self) -> UntagResourceRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UntagResourceRequest
impl Debug for UntagResourceRequest
Source§impl Default for UntagResourceRequest
impl Default for UntagResourceRequest
Source§fn default() -> UntagResourceRequest
fn default() -> UntagResourceRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UntagResourceRequest
impl PartialEq for UntagResourceRequest
Source§fn eq(&self, other: &UntagResourceRequest) -> bool
fn eq(&self, other: &UntagResourceRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UntagResourceRequest
impl Serialize for UntagResourceRequest
impl StructuralPartialEq for UntagResourceRequest
Auto Trait Implementations§
impl Freeze for UntagResourceRequest
impl RefUnwindSafe for UntagResourceRequest
impl Send for UntagResourceRequest
impl Sync for UntagResourceRequest
impl Unpin for UntagResourceRequest
impl UnsafeUnpin for UntagResourceRequest
impl UnwindSafe for UntagResourceRequest
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