Module Values.GroupingConfigurationSource

The configuration information of the grouping of Wisdom users.

Sourcetype nonrec t = {
  1. criteria : GroupingCriteria.t option;
    (*

    The criteria used for grouping Wisdom users. The following is the list of supported criteria values. RoutingProfileArn: Grouping the users by their Amazon Connect routing profile ARN. User should have SearchRoutingProfile and DescribeRoutingProfile permissions when setting criteria to this value.

    *)
  2. values : GroupingValues.t option;
    (*

    The list of values that define different groups of Wisdom users. When setting criteria to RoutingProfileArn, you need to provide a list of ARNs of Amazon Connect routing profiles as values of this parameter.

    *)
}
Sourceval make : ?criteria:??? -> ?values:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of GroupingValue.t ] list | `String of GroupingCriteria.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