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
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) -> &[Attribute]
pub fn attributes(&self) -> &[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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .attributes.is_none()
.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PutAttributesInput
Auto Trait Implementations§
impl Freeze for PutAttributesInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more