Learn R Programming

paws.database (version 0.1.12)

elasticache_modify_user: Changes user password(s) and/or access string

Description

Changes user password(s) and/or access string.

Usage

elasticache_modify_user(UserId, AccessString, AppendAccessString,
  Passwords, 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.

AccessString

Access permissions string used for this user.

AppendAccessString

Adds additional user permissions to the access string.

Passwords

The passwords belonging to the user. You are allowed up to two.

NoPasswordRequired

Indicates no password is required for the user.

Request syntax

svc$modify_user(
  UserId = "string",
  AccessString = "string",
  AppendAccessString = "string",
  Passwords = list(
    "string"
  ),
  NoPasswordRequired = TRUE|FALSE
)