pub struct DeleteAttributesFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteAttributes
.
Deletes one or more custom attributes from an Amazon ECS resource.
Implementations§
source§impl DeleteAttributesFluentBuilder
impl DeleteAttributesFluentBuilder
sourcepub fn as_input(&self) -> &DeleteAttributesInputBuilder
pub fn as_input(&self) -> &DeleteAttributesInputBuilder
Access the DeleteAttributes as a reference.
sourcepub async fn send(
self
) -> Result<DeleteAttributesOutput, SdkError<DeleteAttributesError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteAttributesOutput, SdkError<DeleteAttributesError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<DeleteAttributesOutput, DeleteAttributesError, Self>
pub fn customize( self ) -> CustomizableOperation<DeleteAttributesOutput, DeleteAttributesError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 delete 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 delete 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 delete 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 delete from your resource. You can specify up to 10 attributes for each request. For custom attributes, specify the attribute name and target ID, but don't specify the value. If you specify the target ID using the short form, you must also specify the target type.
sourcepub fn set_attributes(self, input: Option<Vec<Attribute>>) -> Self
pub fn set_attributes(self, input: Option<Vec<Attribute>>) -> Self
The attributes to delete from your resource. You can specify up to 10 attributes for each request. For custom attributes, specify the attribute name and target ID, but don't specify the value. If you specify the target ID using the short form, you must also specify the target type.
sourcepub fn get_attributes(&self) -> &Option<Vec<Attribute>>
pub fn get_attributes(&self) -> &Option<Vec<Attribute>>
The attributes to delete from your resource. You can specify up to 10 attributes for each request. For custom attributes, specify the attribute name and target ID, but don't specify the value. If you specify the target ID using the short form, you must also specify the target type.
Trait Implementations§
source§impl Clone for DeleteAttributesFluentBuilder
impl Clone for DeleteAttributesFluentBuilder
source§fn clone(&self) -> DeleteAttributesFluentBuilder
fn clone(&self) -> DeleteAttributesFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more