Update Acl
memorydb_update_acl | R Documentation |
Changes the list of users that belong to the Access Control List¶
Description¶
Changes the list of users that belong to the Access Control List.
Usage¶
Arguments¶
ACLName
[required] The name of the Access Control List
UserNamesToAdd
The list of users to add to the Access Control List
UserNamesToRemove
The list of users to remove from the Access Control List
Value¶
A list with the following syntax:
list(
ACL = list(
Name = "string",
Status = "string",
UserNames = list(
"string"
),
MinimumEngineVersion = "string",
PendingChanges = list(
UserNamesToRemove = list(
"string"
),
UserNamesToAdd = list(
"string"
)
),
Clusters = list(
"string"
),
ARN = "string"
)
)