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¶
memorydb_update_acl(ACLName, UserNamesToAdd, UserNamesToRemove)
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"
)
)
Request syntax¶
svc$update_acl(
ACLName = "string",
UserNamesToAdd = list(
"string"
),
UserNamesToRemove = list(
"string"
)
)