pub struct DeleteCacheSecurityGroupMessage {
pub cache_security_group_name: String,
}
Expand description
Represents the input of a DeleteCacheSecurityGroup
operation.
Fields§
§cache_security_group_name: String
The name of the cache security group to delete.
You cannot delete the default security group.
Trait Implementations§
Source§impl Clone for DeleteCacheSecurityGroupMessage
impl Clone for DeleteCacheSecurityGroupMessage
Source§fn clone(&self) -> DeleteCacheSecurityGroupMessage
fn clone(&self) -> DeleteCacheSecurityGroupMessage
Returns a copy 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 Default for DeleteCacheSecurityGroupMessage
impl Default for DeleteCacheSecurityGroupMessage
Source§fn default() -> DeleteCacheSecurityGroupMessage
fn default() -> DeleteCacheSecurityGroupMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteCacheSecurityGroupMessage
impl PartialEq for DeleteCacheSecurityGroupMessage
Source§fn eq(&self, other: &DeleteCacheSecurityGroupMessage) -> bool
fn eq(&self, other: &DeleteCacheSecurityGroupMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteCacheSecurityGroupMessage
Auto Trait Implementations§
impl Freeze for DeleteCacheSecurityGroupMessage
impl RefUnwindSafe for DeleteCacheSecurityGroupMessage
impl Send for DeleteCacheSecurityGroupMessage
impl Sync for DeleteCacheSecurityGroupMessage
impl Unpin for DeleteCacheSecurityGroupMessage
impl UnwindSafe for DeleteCacheSecurityGroupMessage
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