Class: Aws::CloudSearch::Types::Suggester
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudSearch::Types::Suggester
- 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
-
#document_suggester_options ⇒ Types::DocumentSuggesterOptions
Options for a search suggester.
-
#suggester_name ⇒ String
Names must begin with a letter and can contain the following characters: a-z (lowercase), 0-9, and _ (underscore).
Instance Attribute Details
#document_suggester_options ⇒ Types::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_name ⇒ String
Names must begin with a letter and can contain the following characters: a-z (lowercase), 0-9, and _ (underscore).
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 |