AWS Security ChangesHomeSearch

AWS IAM documentation change

Service: IAM · 2025-06-25 · Documentation low

File: IAM/latest/UserGuide/iam_example_iam_DeleteGroup_section.md

Summary

Added PowerShell V5 example for deleting IAM group and removing users first

Security assessment

The change adds operational documentation for group deletion but doesn't address security vulnerabilities or describe security features

Diff

diff --git a/IAM/latest/UserGuide/iam_example_iam_DeleteGroup_section.md b/IAM/latest/UserGuide/iam_example_iam_DeleteGroup_section.md
index 049e721a7..e51a23a3d 100644
--- a//IAM/latest/UserGuide/iam_example_iam_DeleteGroup_section.md
+++ b//IAM/latest/UserGuide/iam_example_iam_DeleteGroup_section.md
@@ -86,0 +87,15 @@ PowerShell
+**Tools for PowerShell V5**
+    
+
+**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 API details, see [DeleteGroup](https://docs.aws.amazon.com/powershell/v5/reference) in _AWS Tools for PowerShell Cmdlet Reference (V5)_. 
+
+
+
+