AWS singlesignon documentation change
Summary
Added examples section with sample request/response for ListGroups API, removed introductory note about member account access
Security assessment
Addition of examples improves documentation clarity but removes security guidance. No direct evidence of vulnerability remediation or new security documentation.
Diff
diff --git a/singlesignon/latest/IdentityStoreAPIReference/API_ListGroups.md b/singlesignon/latest/IdentityStoreAPIReference/API_ListGroups.md index 99586efb5..1c1aed47b 100644 --- a//singlesignon/latest/IdentityStoreAPIReference/API_ListGroups.md +++ b//singlesignon/latest/IdentityStoreAPIReference/API_ListGroups.md @@ -5 +5 @@ -Request SyntaxRequest ParametersResponse SyntaxResponse ElementsErrorsSee Also +Request SyntaxRequest ParametersResponse SyntaxResponse ElementsErrorsExamplesSee Also @@ -9,6 +8,0 @@ Request SyntaxRequest ParametersResponse SyntaxResponse ElementsErrorsSee Also -Lists all groups in the identity store. Returns a paginated list of complete `Group` objects. Filtering for a `Group` by the `DisplayName` attribute is deprecated. Instead, use the `GetGroupId` API action. - -###### Note - -If you have access to a member account, you can use this API operation from the member account. For more information, see [Limiting access to the identity store from member accounts](https://docs.aws.amazon.com/singlesignon/latest/userguide/manage-your-accounts.html#limiting-access-from-member-accounts) in the _AWS IAM Identity Center User Guide_. - @@ -169,0 +164,36 @@ HTTP Status Code: 400 +## Examples + +### Example + +This example lists the two groups in the specified identity store. + +#### Sample Request + + + { + "IdentityStoreId": "d-1234567890", + "MaxResults": 100, + "NextToken": "", + } + + +#### Sample Response + + + { + "Groups": [ + { + "GroupId": "a1b2c3d4-5678-90ab-cdef-EXAMPLE22222", + "DisplayName": "Developers", + "Description": "Group that contains all developers", + "IdentityStoreId": "d-1234567890" + }, + { + "GroupId": "a1b2c3d4-5678-90ab-cdef-EXAMPLE22222", + "DisplayName": "Engineers", + "Description": "Group that contains all engineers", + "IdentityStoreId": "d-1234567890" + } + ] + } +