Class: Aws::ConnectWisdomService::Types::GroupingConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-connectwisdomservice/types.rb

Overview

The configuration information of the grouping of Wisdom users.

Constant Summary collapse

SENSITIVE =
[:criteria, :values]

Instance Attribute Summary collapse

Instance Attribute Details

#criteriaString

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][2

    and [DescribeRoutingProfile]

    permissions when setting criteria to this value.

^

[1]: docs.aws.amazon.com/connect/latest/APIReference/API_RoutingProfile.html [2]: docs.aws.amazon.com/connect/latest/APIReference/API_SearchRoutingProfiles.html [3]: docs.aws.amazon.com/connect/latest/APIReference/API_DescribeRoutingProfile.html

Returns:

  • (String)


1648
1649
1650
1651
1652
1653
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 1648

class GroupingConfiguration < Struct.new(
  :criteria,
  :values)
  SENSITIVE = [:criteria, :values]
  include Aws::Structure
end

#valuesArray<String>

The list of values that define different groups of Wisdom users.

  • When setting ‘criteria` to `RoutingProfileArn`, you need to provide a list of ARNs of [Amazon Connect routing profiles] as values of this parameter.

^

[1]: docs.aws.amazon.com/connect/latest/APIReference/API_RoutingProfile.html

Returns:

  • (Array<String>)


1648
1649
1650
1651
1652
1653
# File 'lib/aws-sdk-connectwisdomservice/types.rb', line 1648

class GroupingConfiguration < Struct.new(
  :criteria,
  :values)
  SENSITIVE = [:criteria, :values]
  include Aws::Structure
end