#[non_exhaustive]pub struct PutAttributesInputBuilder { /* private fields */ }
Expand description
A builder for PutAttributesInput
.
Implementations§
source§impl PutAttributesInputBuilder
impl PutAttributesInputBuilder
sourcepub fn cluster(self, input: impl Into<String>) -> Self
pub fn cluster(self, input: impl Into<String>) -> Self
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 set_cluster(self, input: Option<String>) -> Self
pub fn set_cluster(self, input: Option<String>) -> Self
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 get_cluster(&self) -> &Option<String>
pub fn get_cluster(&self) -> &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.
sourcepub fn attributes(self, input: Attribute) -> Self
pub fn attributes(self, input: Attribute) -> Self
Appends an item to attributes
.
To override the contents of this collection use set_attributes
.
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.
sourcepub fn set_attributes(self, input: Option<Vec<Attribute>>) -> Self
pub fn set_attributes(self, input: Option<Vec<Attribute>>) -> Self
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.
sourcepub fn get_attributes(&self) -> &Option<Vec<Attribute>>
pub fn get_attributes(&self) -> &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.
sourcepub fn build(self) -> Result<PutAttributesInput, BuildError>
pub fn build(self) -> Result<PutAttributesInput, BuildError>
Consumes the builder and constructs a PutAttributesInput
.
source§impl PutAttributesInputBuilder
impl PutAttributesInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<PutAttributesOutput, SdkError<PutAttributesError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<PutAttributesOutput, SdkError<PutAttributesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for PutAttributesInputBuilder
impl Clone for PutAttributesInputBuilder
source§fn clone(&self) -> PutAttributesInputBuilder
fn clone(&self) -> PutAttributesInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PutAttributesInputBuilder
impl Debug for PutAttributesInputBuilder
source§impl Default for PutAttributesInputBuilder
impl Default for PutAttributesInputBuilder
source§fn default() -> PutAttributesInputBuilder
fn default() -> PutAttributesInputBuilder
source§impl PartialEq for PutAttributesInputBuilder
impl PartialEq for PutAttributesInputBuilder
source§fn eq(&self, other: &PutAttributesInputBuilder) -> bool
fn eq(&self, other: &PutAttributesInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.