Values.UserSourceThe details of the user.
type nonrec t = {userId : UserId.t option;The unique identifier for the user.
*)status : UserStatus.t option;The current status of the user. CREATING – The user 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 of the user. The email address serves as a uniquer identifier for each user and cannot be changed after it's created.
*)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 was 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.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Long of TimestampEpoch.t
| `String of UserId.t ])
list ]