pub struct DeleteAttributesRequest {
pub attributes: Vec<Attribute>,
pub cluster: Option<String>,
}
Fields§
§attributes: Vec<Attribute>
The attributes to delete from your resource. You can specify up to 10 attributes per request. For custom attributes, specify the attribute name and target ID, but do not specify the value. If you specify the target ID using the short form, you must also specify the target type.
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.
Trait Implementations§
Source§impl Clone for DeleteAttributesRequest
impl Clone for DeleteAttributesRequest
Source§fn clone(&self) -> DeleteAttributesRequest
fn clone(&self) -> DeleteAttributesRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeleteAttributesRequest
impl Debug for DeleteAttributesRequest
Source§impl Default for DeleteAttributesRequest
impl Default for DeleteAttributesRequest
Source§fn default() -> DeleteAttributesRequest
fn default() -> DeleteAttributesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteAttributesRequest
impl PartialEq for DeleteAttributesRequest
Source§impl Serialize for DeleteAttributesRequest
impl Serialize for DeleteAttributesRequest
impl StructuralPartialEq for DeleteAttributesRequest
Auto Trait Implementations§
impl Freeze for DeleteAttributesRequest
impl RefUnwindSafe for DeleteAttributesRequest
impl Send for DeleteAttributesRequest
impl Sync for DeleteAttributesRequest
impl Unpin for DeleteAttributesRequest
impl UnwindSafe for DeleteAttributesRequest
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
Mutably borrows from an owned value. Read more