pub struct AddTagsInput {
pub resource_id: String,
pub tags: Vec<Tag>,
}
Expand description
This input identifies a cluster and a list of tags to attach.
Fields§
§resource_id: String
The Amazon EMR resource identifier to which tags will be added. This value must be a cluster identifier.
A list of tags to associate with a cluster and propagate to EC2 instances. Tags are user-defined key-value pairs that consist of a required key string with a maximum of 128 characters, and an optional value string with a maximum of 256 characters.
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