Values.GetUserResponseSourceRetrieves details for a specific user.
type nonrec t = {userId : UserId.t option;The unique identifier for the user that is retrieved.
*)status : UserStatus.t option;The current status of the user. CREATING – The creation is in progress. ENABLED – The user is created and is currently active. DISABLED – The user is currently inactive.
*)firstName : FirstName.t option;The first name of the user.
*)lastName : LastName.t option;The last name of the user.
*)emailAddress : Email.t option;The email address that is associated with the user.
*)type_ : UserType.t option;Indicates the type of user. SUPER_USER – A user with permission to all the functionality and data in FinSpace. APP_USER – A user with specific permissions in FinSpace. The users are assigned permissions by adding them to a permission group.
*)apiAccess : ApiAccess.t option;Indicates whether the user can use the GetProgrammaticAccessCredentials API to obtain credentials that can then be used to access other FinSpace Data API operations. ENABLED – The user has permissions to use the APIs. DISABLED – The user does not have permissions to use any APIs.
*)apiAccessPrincipalArn : RoleArn.t option;The ARN identifier of an AWS user or role that is allowed to call the GetProgrammaticAccessCredentials API to obtain a credentials token for a specific FinSpace user. This must be an IAM role within your FinSpace account.
*)createTime : TimestampEpoch.t option;The timestamp at which the user was created in FinSpace. The value is determined as epoch time in milliseconds.
*)lastEnabledTime : TimestampEpoch.t option;Describes the last time the user was activated. The value is determined as epoch time in milliseconds.
*)lastDisabledTime : TimestampEpoch.t option;Describes the last time the user was deactivated. The value is determined as epoch time in milliseconds.
*)lastModifiedTime : TimestampEpoch.t option;Describes the last time the user details were updated. The value is determined as epoch time in milliseconds.
*)lastLoginTime : TimestampEpoch.t option;Describes the last time that the user logged into their account. The value is determined as epoch time in milliseconds.
*)}type nonrec error = [ | `AccessDeniedException of AccessDeniedException.t| `InternalServerException of InternalServerException.t| `ResourceNotFoundException of ResourceNotFoundException.t| `ThrottlingException of ThrottlingException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `AccessDeniedException of AccessDeniedException.t
| `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ThrottlingException of unit
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `AccessDeniedException of AccessDeniedException.t
| `InternalServerException of InternalServerException.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ThrottlingException of unit
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Long of TimestampEpoch.t
| `String of UserId.t ])
list ]