ACL
Source:
src/AWS/MemoryDB/ACL.ts
A MemoryDB Access Control List (ACL) — a named collection of Users
that a cluster authenticates against. Attach an ACL to a
Cluster via aclName.
ACLs are free and provision quickly.
Creating an ACL
Section titled “Creating an ACL”const appUser = yield* User("AppUser", { authenticationMode: { type: "password", passwords: [appPassword] }, accessString: "on ~* +@all",});const acl = yield* ACL("AppAcl", { userNames: [appUser.userName],});