Skip to content

Create User

memorydb_create_user R Documentation

Creates a MemoryDB user

Description

Creates a MemoryDB user. For more information, see Authenticating users with Access Contol Lists (ACLs).

Usage

memorydb_create_user(UserName, AuthenticationMode, AccessString, Tags)

Arguments

UserName

[required] The name of the user. This value must be unique as it also serves as the user identifier.

AuthenticationMode

[required] Denotes the user's authentication properties, such as whether it requires a password to authenticate.

AccessString

[required] Access permissions string used for this user.

Tags

A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.

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$create_user(
  UserName = "string",
  AuthenticationMode = list(
    Type = "password"|"iam",
    Passwords = list(
      "string"
    )
  ),
  AccessString = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)