Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data DocumentSuggesterOptions = DocumentSuggesterOptions' {}
- newDocumentSuggesterOptions :: Text -> DocumentSuggesterOptions
- documentSuggesterOptions_sortExpression :: Lens' DocumentSuggesterOptions (Maybe Text)
- documentSuggesterOptions_fuzzyMatching :: Lens' DocumentSuggesterOptions (Maybe SuggesterFuzzyMatching)
- documentSuggesterOptions_sourceField :: Lens' DocumentSuggesterOptions Text
Documentation
data DocumentSuggesterOptions Source #
Options for a search suggester.
See: newDocumentSuggesterOptions
smart constructor.
DocumentSuggesterOptions' | |
|
Instances
newDocumentSuggesterOptions Source #
Create a value of DocumentSuggesterOptions
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:sortExpression:DocumentSuggesterOptions'
, documentSuggesterOptions_sortExpression
- An expression that computes a score for each suggestion to control how
they are sorted. The scores are rounded to the nearest integer, with a
floor of 0 and a ceiling of 2^31-1. A document's relevance score is not
computed for suggestions, so sort expressions cannot reference the
_score
value. To sort suggestions using a numeric field or existing
expression, simply specify the name of the field or expression. If no
expression is configured for the suggester, the suggestions are sorted
with the closest matches listed first.
$sel:fuzzyMatching:DocumentSuggesterOptions'
, documentSuggesterOptions_fuzzyMatching
- The level of fuzziness allowed when suggesting matches for a string:
none
, low
, or high
. With none, the specified string is treated as
an exact prefix. With low, suggestions must differ from the specified
string by no more than one character. With high, suggestions can differ
by up to two characters. The default is none.
$sel:sourceField:DocumentSuggesterOptions'
, documentSuggesterOptions_sourceField
- The name of the index field you want to use for suggestions.
documentSuggesterOptions_sortExpression :: Lens' DocumentSuggesterOptions (Maybe Text) Source #
An expression that computes a score for each suggestion to control how
they are sorted. The scores are rounded to the nearest integer, with a
floor of 0 and a ceiling of 2^31-1. A document's relevance score is not
computed for suggestions, so sort expressions cannot reference the
_score
value. To sort suggestions using a numeric field or existing
expression, simply specify the name of the field or expression. If no
expression is configured for the suggester, the suggestions are sorted
with the closest matches listed first.
documentSuggesterOptions_fuzzyMatching :: Lens' DocumentSuggesterOptions (Maybe SuggesterFuzzyMatching) Source #
The level of fuzziness allowed when suggesting matches for a string:
none
, low
, or high
. With none, the specified string is treated as
an exact prefix. With low, suggestions must differ from the specified
string by no more than one character. With high, suggestions can differ
by up to two characters. The default is none.
documentSuggesterOptions_sourceField :: Lens' DocumentSuggesterOptions Text Source #
The name of the index field you want to use for suggestions.