Class: Aws::QConnect::Types::GroupingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::GroupingConfiguration
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
The configuration information of the grouping of Amazon Q in Connect users.
Constant Summary collapse
- SENSITIVE =
[:criteria, :values]
Instance Attribute Summary collapse
-
#criteria ⇒ String
The criteria used for grouping Amazon Q in Connect users.
-
#values ⇒ Array<String>
The list of values that define different groups of Amazon Q in Connect users.
Instance Attribute Details
#criteria ⇒ String
The criteria used for grouping Amazon Q in Connect 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.
^
4766 4767 4768 4769 4770 4771 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4766 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 Amazon Q in Connect users.
- When setting
criteria
toRoutingProfileArn
, you need to provide a list of ARNs of Amazon Connect routing profiles as values of this parameter.
^
4766 4767 4768 4769 4770 4771 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4766 class GroupingConfiguration < Struct.new( :criteria, :values) SENSITIVE = [:criteria, :values] include Aws::Structure end |