Values.GroupMembersSourceA list of users that belong to a group. This is useful for user context filtering, where search results are filtered based on the user or their group access to documents.
type nonrec t = {memberGroups : MemberGroups.t option;A list of users that belong to a group. This can also include sub groups. For example, the sub groups "Research", "Engineering", and "Sales and Marketing" all belong to the group "Company A".
*)memberUsers : MemberUsers.t option;A list of users that belong to a group. For example, a list of interns all belong to the "Interns" group.
*)s3PathforGroupMembers : S3Path.t option;If you have more than 1000 users and/or sub groups for a single group, you need to provide the path to the S3 file that lists your users and sub groups for a group. Your sub groups can contain more than 1000 users, but the list of sub groups that belong to a group (and/or users) must be no more than 1000. You can download this example S3 file that uses the correct format for listing group members. Note, dataSourceId is optional. The value of type for a group is always GROUP and for a user it is always USER.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Structure of (string * [> `String of GroupId.t ]) list ]
list
| `Structure of (string * [> `String of S3BucketName.t ]) list ])
list ]