Struct aws_sdk_ecs::operation::put_attributes::PutAttributesInput
source · #[non_exhaustive]pub struct PutAttributesInput {
pub cluster: Option<String>,
pub attributes: Option<Vec<Attribute>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.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.
attributes: Option<Vec<Attribute>>The attributes to apply to your resource. You can specify up to 10 custom attributes for each resource. You can specify up to 10 attributes in a single call.
Implementations§
source§impl PutAttributesInput
impl PutAttributesInput
sourcepub fn cluster(&self) -> Option<&str>
pub fn cluster(&self) -> Option<&str>
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.
sourcepub fn attributes(&self) -> Option<&[Attribute]>
pub fn attributes(&self) -> Option<&[Attribute]>
The attributes to apply to your resource. You can specify up to 10 custom attributes for each resource. You can specify up to 10 attributes in a single call.
source§impl PutAttributesInput
impl PutAttributesInput
sourcepub fn builder() -> PutAttributesInputBuilder
pub fn builder() -> PutAttributesInputBuilder
Creates a new builder-style object to manufacture PutAttributesInput.
Trait Implementations§
source§impl Clone for PutAttributesInput
impl Clone for PutAttributesInput
source§fn clone(&self) -> PutAttributesInput
fn clone(&self) -> PutAttributesInput
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 PutAttributesInput
impl Debug for PutAttributesInput
source§impl PartialEq for PutAttributesInput
impl PartialEq for PutAttributesInput
source§fn eq(&self, other: &PutAttributesInput) -> bool
fn eq(&self, other: &PutAttributesInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PutAttributesInput
Auto Trait Implementations§
impl RefUnwindSafe for PutAttributesInput
impl Send for PutAttributesInput
impl Sync for PutAttributesInput
impl Unpin for PutAttributesInput
impl UnwindSafe for PutAttributesInput
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