pub struct DeleteTagsMessage {
pub resource_name: String,
pub tag_keys: Vec<String>,
}Expand description
Contains the output from the DeleteTags action.
Fields§
§resource_name: StringThe Amazon Resource Name (ARN) from which you want to remove the tag or tags. For example, arn:aws:redshift:us-east-2:123456789:cluster:t1.
tag_keys: Vec<String>The tag key that you want to delete.
Trait Implementations§
Source§impl Clone for DeleteTagsMessage
impl Clone for DeleteTagsMessage
Source§fn clone(&self) -> DeleteTagsMessage
fn clone(&self) -> DeleteTagsMessage
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 DeleteTagsMessage
impl Debug for DeleteTagsMessage
Source§impl Default for DeleteTagsMessage
impl Default for DeleteTagsMessage
Source§fn default() -> DeleteTagsMessage
fn default() -> DeleteTagsMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteTagsMessage
impl PartialEq for DeleteTagsMessage
impl StructuralPartialEq for DeleteTagsMessage
Auto Trait Implementations§
impl Freeze for DeleteTagsMessage
impl RefUnwindSafe for DeleteTagsMessage
impl Send for DeleteTagsMessage
impl Sync for DeleteTagsMessage
impl Unpin for DeleteTagsMessage
impl UnwindSafe for DeleteTagsMessage
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