Class: Aws::CloudSearch::Types::Suggester

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

Overview

Configuration information for a search suggester. Each suggester has a unique name and specifies the text field you want to use for suggestions. The following options can be configured for a suggester: ‘FuzzyMatching`, `SortExpression`.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#document_suggester_optionsTypes::DocumentSuggesterOptions

Options for a search suggester.



1838
1839
1840
1841
1842
1843
# File 'lib/aws-sdk-cloudsearch/types.rb', line 1838

class Suggester < Struct.new(
  :suggester_name,
  :document_suggester_options)
  SENSITIVE = []
  include Aws::Structure
end

#suggester_nameString

Names must begin with a letter and can contain the following characters: a-z (lowercase), 0-9, and _ (underscore).

Returns:

  • (String)


1838
1839
1840
1841
1842
1843
# File 'lib/aws-sdk-cloudsearch/types.rb', line 1838

class Suggester < Struct.new(
  :suggester_name,
  :document_suggester_options)
  SENSITIVE = []
  include Aws::Structure
end