AWS singlesignon documentation change
Summary
Added examples section with sample request/response for creating a group
Security assessment
The change adds example usage documentation but contains no security-related content or vulnerability fixes. It improves documentation clarity without addressing security mechanisms.
Diff
diff --git a/singlesignon/latest/IdentityStoreAPIReference/API_CreateGroup.md b/singlesignon/latest/IdentityStoreAPIReference/API_CreateGroup.md index 2097ed8ab..cda1a32b7 100644 --- a//singlesignon/latest/IdentityStoreAPIReference/API_CreateGroup.md +++ b//singlesignon/latest/IdentityStoreAPIReference/API_CreateGroup.md @@ -5 +5 @@ -Request SyntaxRequest ParametersResponse SyntaxResponse ElementsErrorsSee Also +Request SyntaxRequest ParametersResponse SyntaxResponse ElementsErrorsExamplesSee Also @@ -9,2 +8,0 @@ Request SyntaxRequest ParametersResponse SyntaxResponse ElementsErrorsSee Also -Creates a group within the specified identity store. - @@ -160,0 +159,23 @@ HTTP Status Code: 400 +## Examples + +### Example + +This example creates a new group called Developers in the specified identity store. + +#### Sample Request + + + { + "IdentityStoreId": "d-1234567890", + "DisplayName": "Developers", + "Description": "Group that contains all developers" + } + +#### Sample Response + + + { + "GroupId": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "IdentityStoreId": "d-1234567890" + } +