Values.UserByPermissionGroupSourceThe structure of a user associated with a permission group.
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 unique 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 access FinSpace API operations. ENABLED – The user has permissions to use the API operations. DISABLED – The user does not have permissions to use any API operations.
*)apiAccessPrincipalArn : RoleArn.t option;The IAM ARN identifier that is attached to FinSpace API calls.
*)membershipStatus : PermissionGroupMembershipStatus.t option;Indicates the status of the user within a permission group. ADDITION_IN_PROGRESS – The user is currently being added to the permission group. ADDITION_SUCCESS – The user is successfully added to the permission group. REMOVAL_IN_PROGRESS – The user is currently being removed from the permission group.
*)}