Module Values.GroupMembersSource

A list of users or sub groups that belong to a group. This is for generating Amazon Q Business chat results only from document a user has access to.

Sourcetype nonrec t = {
  1. memberGroups : MemberGroups.t option;
    (*

    A list of sub groups that belong to a group. For example, the sub groups "Research", "Engineering", and "Sales and Marketing" all belong to the group "Company".

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

    *)
  3. s3PathForGroupMembers : S3.t option;
}
Sourceval make : ?memberGroups:??? -> ?memberUsers:??? -> ?s3PathForGroupMembers:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of GroupName.t ]) list ] list | `Structure of (string * [> `String of S3BucketName.t ]) list ]) 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