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 ==
.