pub struct AddTagsInput {
pub resource_arn: String,
pub tags: Vec<Tag>,
}
Fields§
§resource_arn: String
The Amazon Resource Name (ARN) of the resource that you want to tag.
An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.
Trait Implementations§
Source§impl Clone for AddTagsInput
impl Clone for AddTagsInput
Source§fn clone(&self) -> AddTagsInput
fn clone(&self) -> AddTagsInput
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 AddTagsInput
impl Debug for AddTagsInput
Source§impl Default for AddTagsInput
impl Default for AddTagsInput
Source§fn default() -> AddTagsInput
fn default() -> AddTagsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for AddTagsInput
impl PartialEq for AddTagsInput
Source§impl Serialize for AddTagsInput
impl Serialize for AddTagsInput
impl StructuralPartialEq for AddTagsInput
Auto Trait Implementations§
impl Freeze for AddTagsInput
impl RefUnwindSafe for AddTagsInput
impl Send for AddTagsInput
impl Sync for AddTagsInput
impl Unpin for AddTagsInput
impl UnwindSafe for AddTagsInput
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