Module Values.UserByPermissionGroupSource

The structure of a user associated with a permission group.

Sourcetype nonrec t = {
  1. userId : UserId.t option;
    (*

    The unique identifier for the user.

    *)
  2. 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.

    *)
  3. firstName : FirstName.t option;
    (*

    The first name of the user.

    *)
  4. lastName : LastName.t option;
    (*

    The last name of the user.

    *)
  5. 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.

    *)
  6. 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.

    *)
  7. 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.

    *)
  8. apiAccessPrincipalArn : RoleArn.t option;
    (*

    The IAM ARN identifier that is attached to FinSpace API calls.

    *)
  9. 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.

    *)
}
Sourceval make : ?userId:??? -> ?status:??? -> ?firstName:??? -> ?lastName:??? -> ?emailAddress:??? -> ?type_:??? -> ?apiAccess:??? -> ?apiAccessPrincipalArn:??? -> ?membershipStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UserId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t