interface GroupingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Wisdom.CfnQuickResponsePropsMixin.GroupingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswisdom#CfnQuickResponsePropsMixin_GroupingConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.wisdom.CfnQuickResponsePropsMixin.GroupingConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_wisdom.CfnQuickResponsePropsMixin.GroupingConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wisdom » CfnQuickResponsePropsMixin » GroupingConfigurationProperty |
The configuration information of the grouping of Amazon Q in Connect users.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wisdom as wisdom } from '@aws-cdk/cfn-property-mixins';
const groupingConfigurationProperty: wisdom.CfnQuickResponsePropsMixin.GroupingConfigurationProperty = {
criteria: 'criteria',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| criteria? | string | The criteria used for grouping Amazon Q in Connect users. |
| values? | string[] | The list of values that define different groups of Amazon Q in Connect users. |
criteria?
Type:
string
(optional)
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.
values?
Type:
string[]
(optional)
The list of values that define different groups of Amazon Q in Connect users.
- When setting
criteriatoRoutingProfileArn, you need to provide a list of ARNs of Amazon Connect routing profiles as values of this parameter.

.NET
Go
Java
Python
TypeScript