AWS singlesignon documentation change
Summary
Added AWS CLI example for updating user properties
Security assessment
The change adds CLI documentation for user attribute updates but does not address security vulnerabilities or introduce security-specific features.
Diff
diff --git a/singlesignon/latest/userguide/edituser.md b/singlesignon/latest/userguide/edituser.md index fa4f7a76f..47fd7d37d 100644 --- a//singlesignon/latest/userguide/edituser.md +++ b//singlesignon/latest/userguide/edituser.md @@ -7 +7,4 @@ -Use the following procedure to edit the properties of a user in your Identity Center directory using the IAM Identity Center console. Alternatively, you can call the AWS API operation [UpdateUser](https://docs.aws.amazon.com/singlesignon/latest/IdentityStoreAPIReference/API_UpdateUser.html) to update user properties. +Use the following procedure to edit the properties of a user in your Identity Center directory. Alternatively, you can call the AWS API operation [ UpdateUser](https://docs.aws.amazon.com/singlesignon/latest/IdentityStoreAPIReference/API_UpdateUser.html) to update user properties. + +Console + @@ -31,0 +35,13 @@ The **Email address** attribute is an editable field and the value you provide m +AWS CLI + + +###### To edit user properties in IAM Identity Center + +The following `update-user` command updates the user's nickname. + + + aws identitystore update-user \ + --identity-store-id d-1234567890 \ + --user-id a1b2c3d4-5678-90ab-cdef-EXAMPLE11111 \ + --operations '{"AttributePath":"nickName","AttributeValue":"Johnny"}' +