Update User
| memorydb_update_user | R Documentation | 
Changes user password(s) and/or access string¶
Description¶
Changes user password(s) and/or access string.
Usage¶
memorydb_update_user(UserName, AuthenticationMode, AccessString)
Arguments¶
| UserName | [required] The name of the user | 
| AuthenticationMode | Denotes the user's authentication properties, such as whether it requires a password to authenticate. | 
| AccessString | Access permissions string used for this user. | 
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$update_user(
  UserName = "string",
  AuthenticationMode = list(
    Type = "password"|"iam",
    Passwords = list(
      "string"
    )
  ),
  AccessString = "string"
)