Struct aws_sdk_elasticache::output::ModifyUserGroupOutput
source · [−]#[non_exhaustive]pub struct ModifyUserGroupOutput { /* private fields */ }Implementations
sourceimpl ModifyUserGroupOutput
impl ModifyUserGroupOutput
sourcepub fn user_group_id(&self) -> Option<&str>
pub fn user_group_id(&self) -> Option<&str>
The ID of the user group.
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
Indicates user group status. Can be "creating", "active", "modifying", "deleting".
sourcepub fn user_ids(&self) -> Option<&[String]>
pub fn user_ids(&self) -> Option<&[String]>
The list of user IDs that belong to the user group.
sourcepub fn minimum_engine_version(&self) -> Option<&str>
pub fn minimum_engine_version(&self) -> Option<&str>
The minimum engine version required, which is Redis 6.0
sourcepub fn pending_changes(&self) -> Option<&UserGroupPendingChanges>
pub fn pending_changes(&self) -> Option<&UserGroupPendingChanges>
A list of updates being applied to the user group.
sourcepub fn replication_groups(&self) -> Option<&[String]>
pub fn replication_groups(&self) -> Option<&[String]>
A list of replication groups that the user group can access.
sourceimpl ModifyUserGroupOutput
impl ModifyUserGroupOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ModifyUserGroupOutput.
Trait Implementations
sourceimpl Clone for ModifyUserGroupOutput
impl Clone for ModifyUserGroupOutput
sourcefn clone(&self) -> ModifyUserGroupOutput
fn clone(&self) -> ModifyUserGroupOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ModifyUserGroupOutput
impl Debug for ModifyUserGroupOutput
sourceimpl PartialEq<ModifyUserGroupOutput> for ModifyUserGroupOutput
impl PartialEq<ModifyUserGroupOutput> for ModifyUserGroupOutput
sourcefn eq(&self, other: &ModifyUserGroupOutput) -> bool
fn eq(&self, other: &ModifyUserGroupOutput) -> bool
impl StructuralPartialEq for ModifyUserGroupOutput
Auto Trait Implementations
impl RefUnwindSafe for ModifyUserGroupOutput
impl Send for ModifyUserGroupOutput
impl Sync for ModifyUserGroupOutput
impl Unpin for ModifyUserGroupOutput
impl UnwindSafe for ModifyUserGroupOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more