pub struct ElastiCacheUserGroup {
pub user_group_id: String,
pub engine: String,
pub status: String,
pub user_ids: Vec<String>,
pub arn: String,
pub minimum_engine_version: String,
pub pending_changes: Option<UserGroupPendingChanges>,
pub replication_groups: Vec<String>,
}Fields§
§user_group_id: String§engine: String§status: String§user_ids: Vec<String>§arn: String§minimum_engine_version: String§pending_changes: Option<UserGroupPendingChanges>§replication_groups: Vec<String>Trait Implementations§
Source§impl Clone for ElastiCacheUserGroup
impl Clone for ElastiCacheUserGroup
Source§fn clone(&self) -> ElastiCacheUserGroup
fn clone(&self) -> ElastiCacheUserGroup
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 moreAuto Trait Implementations§
impl Freeze for ElastiCacheUserGroup
impl RefUnwindSafe for ElastiCacheUserGroup
impl Send for ElastiCacheUserGroup
impl Sync for ElastiCacheUserGroup
impl Unpin for ElastiCacheUserGroup
impl UnsafeUnpin for ElastiCacheUserGroup
impl UnwindSafe for ElastiCacheUserGroup
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