Class: Aws::ConnectWisdomService::Types::GroupingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectWisdomService::Types::GroupingConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connectwisdomservice/types.rb
Overview
The configuration information of the grouping of Wisdom users.
Constant Summary collapse
- SENSITIVE =
[:criteria, :values]
Instance Attribute Summary collapse
-
#criteria ⇒ String
The criteria used for grouping Wisdom users.
-
#values ⇒ Array<String>
The list of values that define different groups of Wisdom users.
Instance Attribute Details
#criteria ⇒ String
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][2
permissions when setting criteria to this value.
^
[1]: docs.aws.amazon.com/connect/latest/APIReference/API_RoutingProfile.html [2]: docs.aws.amazon.com/connect/latest/APIReference/API_SearchRoutingProfiles.html [3]: docs.aws.amazon.com/connect/latest/APIReference/API_DescribeRoutingProfile.html
1648 1649 1650 1651 1652 1653 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 1648 class GroupingConfiguration < Struct.new( :criteria, :values) SENSITIVE = [:criteria, :values] include Aws::Structure end |
#values ⇒ Array<String>
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.
^
[1]: docs.aws.amazon.com/connect/latest/APIReference/API_RoutingProfile.html
1648 1649 1650 1651 1652 1653 |
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 1648 class GroupingConfiguration < Struct.new( :criteria, :values) SENSITIVE = [:criteria, :values] include Aws::Structure end |