pub struct SecurityGroupMembership {
pub security_group_id: Option<String>,
pub status: Option<String>,
}
Expand description
Represents a single cache security group and its status.
Fields§
§security_group_id: Option<String>
The identifier of the cache security group.
status: Option<String>
The status of the cache security group membership. The status changes whenever a cache security group is modified, or when the cache security groups assigned to a cluster are modified.
Trait Implementations§
Source§impl Clone for SecurityGroupMembership
impl Clone for SecurityGroupMembership
Source§fn clone(&self) -> SecurityGroupMembership
fn clone(&self) -> SecurityGroupMembership
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 Debug for SecurityGroupMembership
impl Debug for SecurityGroupMembership
Source§impl Default for SecurityGroupMembership
impl Default for SecurityGroupMembership
Source§fn default() -> SecurityGroupMembership
fn default() -> SecurityGroupMembership
Returns the “default value” for a type. Read more
Source§impl PartialEq for SecurityGroupMembership
impl PartialEq for SecurityGroupMembership
impl StructuralPartialEq for SecurityGroupMembership
Auto Trait Implementations§
impl Freeze for SecurityGroupMembership
impl RefUnwindSafe for SecurityGroupMembership
impl Send for SecurityGroupMembership
impl Sync for SecurityGroupMembership
impl Unpin for SecurityGroupMembership
impl UnwindSafe for SecurityGroupMembership
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