Learn R Programming

paws.database (version 0.1.12)

elasticache_create_user_group: For Redis engine version 6

Description

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

Usage

elasticache_create_user_group(UserGroupId, Engine, UserIds)

Value

A list with the following syntax:

list(
  UserGroupId = "string",
  Status = "string",
  Engine = "string",
  UserIds = list(
    "string"
  ),
  PendingChanges = list(
    UserIdsToRemove = list(
      "string"
    ),
    UserIdsToAdd = list(
      "string"
    )
  ),
  ReplicationGroups = list(
    "string"
  ),
  ARN = "string"
)

Arguments

UserGroupId

[required] The ID of the user group.

Engine

[required] The current supported value is Redis.

UserIds

The list of user IDs that belong to the user group.

Request syntax

svc$create_user_group(
  UserGroupId = "string",
  Engine = "string",
  UserIds = list(
    "string"
  )
)