Skip to content

Delete User Group

elasticache_delete_user_group R Documentation

For Redis OSS engine version 6

Description

For Redis OSS engine version 6.0 onwards: Deletes a user group. The user group must first be disassociated from the replication group before it can be deleted. For more information, see Using Role Based Access Control (RBAC).

Usage

elasticache_delete_user_group(UserGroupId)

Arguments

UserGroupId

[required] The ID of the user group.

Value

A list with the following syntax:

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

Request syntax

svc$delete_user_group(
  UserGroupId = "string"
)