1**To update a user**
2
3This example updates the time zone for the specified user.
4
5Command::
6
7  aws workdocs update-user --user-id "S-1-1-11-1111111111-2222222222-3333333333-3333&d-926726012c" --time-zone-id "America/Los_Angeles"
8
9Output::
10
11  {
12    "User": {
13        "Id": "S-1-1-11-1111111111-2222222222-3333333333-3333&d-926726012c",
14        "Username": "exampleUser",
15        "EmailAddress": "exampleUser@site.awsapps.com",
16        "GivenName": "Example",
17        "Surname": "User",
18        "OrganizationId": "d-926726012c",
19        "RootFolderId": "c5eceb5e1a2d1d460c9d1af8330ae117fc8d39bb1d3ed6acd0992d5ff192d986",
20        "RecycleBinFolderId": "6ca20102926ad15f04b1d248d6d6e44f2449944eda5c758f9a1e9df6a6b7fa66",
21        "Status": "ACTIVE",
22        "Type": "USER",
23        "TimeZoneId": "America/Los_Angeles",
24        "Storage": {
25            "StorageUtilizedInBytes": 0,
26            "StorageRule": {
27                "StorageAllocatedInBytes": 53687091200,
28                "StorageType": "QUOTA"
29            }
30        }
31    }
32  }
33