Struct aws_sdk_memorydb::model::Acl
source · [−]#[non_exhaustive]pub struct Acl { /* private fields */ }Expand description
An Access Control List. You can authenticate users with Access Contol Lists. ACLs enable you to control cluster access by grouping users. These Access control lists are designed as a way to organize access to clusters.
Implementations
sourceimpl Acl
impl Acl
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
Indicates ACL status. Can be "creating", "active", "modifying", "deleting".
sourcepub fn user_names(&self) -> Option<&[String]>
pub fn user_names(&self) -> Option<&[String]>
The list of user names that belong to the ACL.
sourcepub fn minimum_engine_version(&self) -> Option<&str>
pub fn minimum_engine_version(&self) -> Option<&str>
The minimum engine version supported for the ACL
sourcepub fn pending_changes(&self) -> Option<&AclPendingChanges>
pub fn pending_changes(&self) -> Option<&AclPendingChanges>
A list of updates being applied to the ACL.
Trait Implementations
impl StructuralPartialEq for Acl
Auto Trait Implementations
impl RefUnwindSafe for Acl
impl Send for Acl
impl Sync for Acl
impl Unpin for Acl
impl UnwindSafe for Acl
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