pub struct RemoveTagsInput {
pub resource_id: String,
pub tag_keys: Vec<String>,
}
Expand description
This input identifies a cluster and a list of tags to remove.
Fields§
§resource_id: String
The Amazon EMR resource identifier from which tags will be removed. This value must be a cluster identifier.
tag_keys: Vec<String>
A list of tag keys to remove from a resource.
Trait Implementations§
Source§impl Clone for RemoveTagsInput
impl Clone for RemoveTagsInput
Source§fn clone(&self) -> RemoveTagsInput
fn clone(&self) -> RemoveTagsInput
Returns a copy 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 RemoveTagsInput
impl Debug for RemoveTagsInput
Source§impl Default for RemoveTagsInput
impl Default for RemoveTagsInput
Source§fn default() -> RemoveTagsInput
fn default() -> RemoveTagsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for RemoveTagsInput
impl PartialEq for RemoveTagsInput
Source§impl Serialize for RemoveTagsInput
impl Serialize for RemoveTagsInput
impl StructuralPartialEq for RemoveTagsInput
Auto Trait Implementations§
impl Freeze for RemoveTagsInput
impl RefUnwindSafe for RemoveTagsInput
impl Send for RemoveTagsInput
impl Sync for RemoveTagsInput
impl Unpin for RemoveTagsInput
impl UnwindSafe for RemoveTagsInput
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