Delete User Group
elasticache_delete_user_group | R Documentation |
For Valkey engine version 7¶
Description¶
For Valkey engine version 7.2 onwards and Redis OSS 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"
)