Learn R Programming

paws.database (version 0.1.12)

elasticache_create_user: For Redis engine version 6

Description

For Redis engine version 6.x onwards: Creates a Redis user. For more information, see Using Role Based Access Control (RBAC).

Usage

elasticache_create_user(UserId, UserName, Engine, Passwords,
  AccessString, NoPasswordRequired)

Value

A list with the following syntax:

list(
  UserId = "string",
  UserName = "string",
  Status = "string",
  Engine = "string",
  AccessString = "string",
  UserGroupIds = list(
    "string"
  ),
  Authentication = list(
    Type = "password"|"no-password",
    PasswordCount = 123
  ),
  ARN = "string"
)

Arguments

UserId

[required] The ID of the user.

UserName

[required] The username of the user.

Engine

[required] The current supported value is Redis.

Passwords

Passwords used for this user. You can create up to two passwords for each user.

AccessString

[required] Access permissions string used for this user.

NoPasswordRequired

Indicates a password is not required for this user.

Request syntax

svc$create_user(
  UserId = "string",
  UserName = "string",
  Engine = "string",
  Passwords = list(
    "string"
  ),
  AccessString = "string",
  NoPasswordRequired = TRUE|FALSE
)