Delete User
memorydb_delete_user | R Documentation |
Deletes a user¶
Description¶
Deletes a user. The user will be removed from all ACLs and in turn removed from all clusters.
Usage¶
memorydb_delete_user(UserName)
Arguments¶
UserName |
[required] The name of the user to delete |
Value¶
A list with the following syntax:
list(
User = list(
Name = "string",
Status = "string",
AccessString = "string",
ACLNames = list(
"string"
),
MinimumEngineVersion = "string",
Authentication = list(
Type = "password"|"no-password"|"iam",
PasswordCount = 123
),
ARN = "string"
)
)
Request syntax¶
svc$delete_user(
UserName = "string"
)