Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions,
see Getting Started with Amazon Web Services in China
(PDF).
Use DeleteGroup
with an Amazon SDK or CLI
The following code examples show how to use DeleteGroup
.
- CLI
-
- Amazon CLI
-
To delete an IAM group
The following delete-group
command deletes an IAM group named MyTestGroup
.
aws iam delete-group \
--group-name MyTestGroup
This command produces no output.
For more information, see Deleting an IAM user group in the Amazon IAM User Guide.
- JavaScript
-
- SDK for JavaScript (v3)
-
import { DeleteGroupCommand, IAMClient } from "@aws-sdk/client-iam";
const client = new IAMClient({});
/**
*
* @param {string} groupName
*/
export const deleteGroup = async (groupName) => {
const command = new DeleteGroupCommand({
GroupName: groupName,
});
const response = await client.send(command);
console.log(response);
return response;
};
- PowerShell
-
- Tools for PowerShell
-
Example 1: This example deletes the IAM group named MyTestGroup
. The first command removes any IAM users that are members of the group, and the second command deletes the IAM group. Both commands work without any prompts for confirmation.
(Get-IAMGroup -GroupName MyTestGroup).Users | Remove-IAMUserFromGroup -GroupName MyTestGroup -Force
Remove-IAMGroup -GroupName MyTestGroup -Force
For a complete list of Amazon SDK developer guides and code examples, see
Using this service with an Amazon SDK.
This topic also includes information about getting started and details about previous SDK versions.