Interface CfnMessageTemplate.GroupingConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMessageTemplate.GroupingConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnMessageTemplate
@Stability(Stable)
public static interface CfnMessageTemplate.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.services.wisdom.*;
GroupingConfigurationProperty groupingConfigurationProperty = GroupingConfigurationProperty.builder()
.criteria("criteria")
.values(List.of("values"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMessageTemplate.GroupingConfigurationPropertystatic final classAn implementation forCfnMessageTemplate.GroupingConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The criteria used for grouping Amazon Q in Connect users.The list of values that define different groups of Amazon Q in Connect users.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
-