pub struct PutAttributesRequest {
pub attributes: Vec<Attribute>,
pub cluster: Option<String>,
}
Fields§
§attributes: Vec<Attribute>
The attributes to apply to your resource. You can specify up to 10 custom attributes per resource. You can specify up to 10 attributes in a single call.
cluster: Option<String>
The short name or full Amazon Resource Name (ARN) of the cluster that contains the resource to apply attributes. If you do not specify a cluster, the default cluster is assumed.
Trait Implementations§
Source§impl Clone for PutAttributesRequest
impl Clone for PutAttributesRequest
Source§fn clone(&self) -> PutAttributesRequest
fn clone(&self) -> PutAttributesRequest
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 PutAttributesRequest
impl Debug for PutAttributesRequest
Source§impl Default for PutAttributesRequest
impl Default for PutAttributesRequest
Source§fn default() -> PutAttributesRequest
fn default() -> PutAttributesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for PutAttributesRequest
impl PartialEq for PutAttributesRequest
Source§impl Serialize for PutAttributesRequest
impl Serialize for PutAttributesRequest
impl StructuralPartialEq for PutAttributesRequest
Auto Trait Implementations§
impl Freeze for PutAttributesRequest
impl RefUnwindSafe for PutAttributesRequest
impl Send for PutAttributesRequest
impl Sync for PutAttributesRequest
impl Unpin for PutAttributesRequest
impl UnwindSafe for PutAttributesRequest
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