#[non_exhaustive]pub struct DeleteAttributesInput {
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 delete attributes. If you do not specify a cluster, the default cluster is assumed.
attributes: 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.
Implementations§
source§impl DeleteAttributesInput
impl DeleteAttributesInput
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 delete 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 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.
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 DeleteAttributesInput
impl DeleteAttributesInput
sourcepub fn builder() -> DeleteAttributesInputBuilder
pub fn builder() -> DeleteAttributesInputBuilder
Creates a new builder-style object to manufacture DeleteAttributesInput
.
Trait Implementations§
source§impl Clone for DeleteAttributesInput
impl Clone for DeleteAttributesInput
source§fn clone(&self) -> DeleteAttributesInput
fn clone(&self) -> DeleteAttributesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteAttributesInput
impl Debug for DeleteAttributesInput
source§impl PartialEq for DeleteAttributesInput
impl PartialEq for DeleteAttributesInput
source§fn eq(&self, other: &DeleteAttributesInput) -> bool
fn eq(&self, other: &DeleteAttributesInput) -> bool
self
and other
values to be equal, and is used
by ==
.