[ aws . elasticache ]
For Redis engine version 6.x 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) .
See also: AWS API Documentation
See ‘aws help’ for descriptions of global parameters.
delete-user-group
--user-group-id <value>
[--cli-input-json | --cli-input-yaml]
[--generate-cli-skeleton <value>]
--user-group-id
(string)
The ID of the user group.
--cli-input-json
| --cli-input-yaml
(string)
Reads arguments from the JSON string provided. The JSON string follows the format provided by --generate-cli-skeleton
. If other arguments are provided on the command line, those values will override the JSON-provided values. It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally. This may not be specified along with --cli-input-yaml
.
--generate-cli-skeleton
(string)
Prints a JSON skeleton to standard output without sending an API request. If provided with no value or the value input
, prints a sample input JSON that can be used as an argument for --cli-input-json
. Similarly, if provided yaml-input
it will print a sample input YAML that can be used with --cli-input-yaml
. If provided with the value output
, it validates the command inputs and returns a sample output JSON for that command.
See ‘aws help’ for descriptions of global parameters.
To delete a user group
The following delete-user-group
example deletes a user group.
aws elasticache delete-user-group \
--user-group-id myusergroup
Output:
{
"UserGroupId": "myusergroup",
"Status": "deleting",
"Engine": "redis",
"UserIds": [
"default"
],
"ReplicationGroups": [],
"ARN": "arn:aws:elasticache:us-west-2:xxxxxxxxxx52:usergroup:myusergroup"
}
For more information, see Authenticating Users with Role-Based Access Control (RBAC) in the Elasticache User Guide.
UserGroupId -> (string)
The ID of the user group.
Status -> (string)
Indicates user group status. Can be “creating”, “active”, “modifying”, “deleting”.
Engine -> (string)
The current supported value is Redis.
UserIds -> (list)
The list of user IDs that belong to the user group.
(string)
PendingChanges -> (structure)
A list of updates being applied to the user group.
UserIdsToRemove -> (list)
The list of user IDs to remove.
(string)
UserIdsToAdd -> (list)
The list of user IDs to add.
(string)
ReplicationGroups -> (list)
A list of replication groups that the user group can access.
(string)
ARN -> (string)
The Amazon Resource Name (ARN) of the user group.