Class: Aws::ConnectWisdomService::Types::QuickResponseQueryField

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

Overview

The quick response fields to query quick responses by.

The following is the list of supported field names.

  • content

  • name

  • description

  • shortcutKey

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#allow_fuzzinessBoolean

Whether the query expects only exact matches on the attribute field values. The results of the query will only include exact matches if this parameter is set to false.

Returns:

  • (Boolean)


2733
2734
2735
2736
2737
2738
2739
2740
2741
# File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 2733

class QuickResponseQueryField < Struct.new(
  :allow_fuzziness,
  :name,
  :operator,
  :priority,
  :values)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the attribute to query the quick responses by.

Returns:

  • (String)


2733
2734
2735
2736
2737
2738
2739
2740
2741
# File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 2733

class QuickResponseQueryField < Struct.new(
  :allow_fuzziness,
  :name,
  :operator,
  :priority,
  :values)
  SENSITIVE = []
  include Aws::Structure
end

#operatorString

The operator to use for matching attribute field values in the query.

Returns:

  • (String)


2733
2734
2735
2736
2737
2738
2739
2740
2741
# File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 2733

class QuickResponseQueryField < Struct.new(
  :allow_fuzziness,
  :name,
  :operator,
  :priority,
  :values)
  SENSITIVE = []
  include Aws::Structure
end

#priorityString

The importance of the attribute field when calculating query result relevancy scores. The value set for this parameter affects the ordering of search results.

Returns:

  • (String)


2733
2734
2735
2736
2737
2738
2739
2740
2741
# File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 2733

class QuickResponseQueryField < Struct.new(
  :allow_fuzziness,
  :name,
  :operator,
  :priority,
  :values)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<String>

The values of the attribute to query the quick responses by.

Returns:

  • (Array<String>)


2733
2734
2735
2736
2737
2738
2739
2740
2741
# File 'gems/aws-sdk-connectwisdomservice/lib/aws-sdk-connectwisdomservice/types.rb', line 2733

class QuickResponseQueryField < Struct.new(
  :allow_fuzziness,
  :name,
  :operator,
  :priority,
  :values)
  SENSITIVE = []
  include Aws::Structure
end