AWS Security ChangesHomeSearch

AWS singlesignon documentation change

Service: singlesignon · 2025-05-13 · Documentation low

File: singlesignon/latest/userguide/adduserstogroups.md

Summary

Added AWS CLI examples and documentation for adding users to groups via CLI

Security assessment

The change provides CLI implementation details for group management but does not address security vulnerabilities or introduce new security-related content beyond standard operational documentation.

Diff

diff --git a/singlesignon/latest/userguide/adduserstogroups.md b/singlesignon/latest/userguide/adduserstogroups.md
index 8fe20f3a0..16ffb9352 100644
--- a//singlesignon/latest/userguide/adduserstogroups.md
+++ b//singlesignon/latest/userguide/adduserstogroups.md
@@ -7 +7,4 @@
-Use the following procedure to add users as members of a group that you previously created in your Identity Center directory using the IAM Identity Center console. Alternatively, you can call the AWS API operation [CreateGroupMembership](https://docs.aws.amazon.com/singlesignon/latest/IdentityStoreAPIReference/API_CreateGroupMembership.html) to add a user as a member of a group.
+Use the following procedure to add users as members of a group that you previously created in your Identity Center directory. Alternatively, you can call the AWS API operation [CreateGroupMembership](https://docs.aws.amazon.com/singlesignon/latest/IdentityStoreAPIReference/API_CreateGroupMembership.html) to add a user as a member of a group.
+
+Console
+    
@@ -25,0 +29,21 @@ Use the following procedure to add users as members of a group that you previous
+AWS CLI
+    
+
+###### To add a user as a member of a group
+
+The following `create-group-membership` command adds a user to a group in your Identity Center directory.
+    
+    
+    aws identitystore create-group-membership \ 
+        --identity-store-id d-1234567890 \
+        --group-id a1b2c3d4-5678-90ab-cdef-EXAMPLE22222 \
+        --member-id UserId=a1b2c3d4-5678-90ab-cdef-EXAMPLE11111
+
+Output:
+    
+    
+    {
+        "MembershipId": "a1b2c3d4-5678-90ab-cdef-EXAMPLE33333",
+        "IdentityStoreId": "d-1234567890"
+    }
+