Interface GroupingConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GroupingConfiguration.Builder,GroupingConfiguration>,SdkBuilder<GroupingConfiguration.Builder,GroupingConfiguration>,SdkPojo
- Enclosing class:
- GroupingConfiguration
public static interface GroupingConfiguration.Builder extends SdkPojo, CopyableBuilder<GroupingConfiguration.Builder,GroupingConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GroupingConfiguration.Buildercriteria(String criteria)The criteria used for grouping Wisdom users.GroupingConfiguration.Buildervalues(String... values)The list of values that define different groups of Wisdom users.GroupingConfiguration.Buildervalues(Collection<String> values)The list of values that define different groups of Wisdom users.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
criteria
GroupingConfiguration.Builder criteria(String criteria)
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 and DescribeRoutingProfile permissions when setting criteria to this value.
- Parameters:
criteria- 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 and DescribeRoutingProfile permissions when setting criteria to this value.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
values
GroupingConfiguration.Builder values(Collection<String> values)
The list of values that define different groups of Wisdom users.
-
When setting
criteriatoRoutingProfileArn, you need to provide a list of ARNs of Amazon Connect routing profiles as values of this parameter.
- Parameters:
values- The list of values that define different groups of Wisdom users.-
When setting
criteriatoRoutingProfileArn, you need to provide a list of ARNs of Amazon Connect routing profiles as values of this parameter.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
values
GroupingConfiguration.Builder values(String... values)
The list of values that define different groups of Wisdom users.
-
When setting
criteriatoRoutingProfileArn, you need to provide a list of ARNs of Amazon Connect routing profiles as values of this parameter.
- Parameters:
values- The list of values that define different groups of Wisdom users.-
When setting
criteriatoRoutingProfileArn, you need to provide a list of ARNs of Amazon Connect routing profiles as values of this parameter.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-