AWS singlesignon documentation change
Summary
Added examples section with sample request/response for GetGroupId API operation and removed note about member account access
Security assessment
Adds operational examples but removes security guidance about account access. No specific vulnerability addressed in changes.
Diff
diff --git a/singlesignon/latest/IdentityStoreAPIReference/API_GetGroupId.md b/singlesignon/latest/IdentityStoreAPIReference/API_GetGroupId.md index a7aa61112..f13a0665c 100644 --- a//singlesignon/latest/IdentityStoreAPIReference/API_GetGroupId.md +++ b//singlesignon/latest/IdentityStoreAPIReference/API_GetGroupId.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 -Retrieves `GroupId` in an identity store. - -###### 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_. - @@ -127,0 +122,28 @@ HTTP Status Code: 400 +## Examples + +### Example + +This example retrieves the group ID for the Developers group using the display name. + +#### Sample Request + + + { + "IdentityStoreId": "d-1234567890", + "AlternateIdentifier": { + "UniqueAttribute": { + "AttributePath": "displayName", + "AttributeValue": "Developers" + } + } + } + + +#### Sample Response + + + { + "GroupId": "a1b2c3d4-5678-90ab-cdef-EXAMPLE22222", + "IdentityStoreId": "d-1234567890" + } +