pub struct RemoveTagsInput {
pub pipeline_id: String,
pub tag_keys: Vec<String>,
}
Expand description
Contains the parameters for RemoveTags.
Fields§
§pipeline_id: String
The ID of the pipeline.
tag_keys: Vec<String>
The keys of the tags to remove.
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