#[non_exhaustive]pub struct DeleteUserGroupOutput { /* private fields */ }
Implementations§
source§impl DeleteUserGroupOutput
impl DeleteUserGroupOutput
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.
source§impl DeleteUserGroupOutput
impl DeleteUserGroupOutput
sourcepub fn builder() -> DeleteUserGroupOutputBuilder
pub fn builder() -> DeleteUserGroupOutputBuilder
Creates a new builder-style object to manufacture DeleteUserGroupOutput
.
Trait Implementations§
source§impl Clone for DeleteUserGroupOutput
impl Clone for DeleteUserGroupOutput
source§fn clone(&self) -> DeleteUserGroupOutput
fn clone(&self) -> DeleteUserGroupOutput
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 DeleteUserGroupOutput
impl Debug for DeleteUserGroupOutput
source§impl PartialEq<DeleteUserGroupOutput> for DeleteUserGroupOutput
impl PartialEq<DeleteUserGroupOutput> for DeleteUserGroupOutput
source§fn eq(&self, other: &DeleteUserGroupOutput) -> bool
fn eq(&self, other: &DeleteUserGroupOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DeleteUserGroupOutput
impl RequestId for DeleteUserGroupOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DeleteUserGroupOutput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteUserGroupOutput
impl Send for DeleteUserGroupOutput
impl Sync for DeleteUserGroupOutput
impl Unpin for DeleteUserGroupOutput
impl UnwindSafe for DeleteUserGroupOutput
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