Interface CfnMessageTemplatePropsMixin.GroupingConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMessageTemplatePropsMixin.GroupingConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnMessageTemplatePropsMixin
@Stability(Stable)
public static interface CfnMessageTemplatePropsMixin.GroupingConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.wisdom.*;
GroupingConfigurationProperty groupingConfigurationProperty = GroupingConfigurationProperty.builder()
.criteria("criteria")
.values(List.of("values"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnMessageTemplatePropsMixin.GroupingConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCriteria
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.
- See Also:
-
getValues
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.
- See Also:
- When setting
-
builder
@Stability(Stable) static CfnMessageTemplatePropsMixin.GroupingConfigurationProperty.Builder builder()
-