Users#
Users include details such as user ID, email, display name, and status. User Management is a platform-level service in AWS deployment that enables you to manage the users within your account. The SDK provides functionality to interact with the User Management API on the AWS watsonx.data integration platform.
- This includes operations such as:
Listing all users
Getting user details using the user ID
Listing all users#
Users can be retrieved using the Platform.users property.
This property returns a UserProfilesAWS object.
>>> platform.users
[...UserProfileAWS(...)...]
Getting user details using the user ID#
Users can be retrieved using the Platform.users property.
You can also filter the returned users using the uid attribute.
This property returns a UserProfileAWS object.
>>> platform.users.get(uid='user-uid-here')
UserProfileAWS(...)