Class: Aws::CloudSearchDomain::Types::SuggestionMatch
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudSearchDomain::Types::SuggestionMatch
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudsearchdomain/types.rb
Overview
An autocomplete suggestion that matches the query string specified in a ‘SuggestRequest`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The document ID of the suggested document.
-
#score ⇒ Integer
The relevance score of a suggested match.
-
#suggestion ⇒ String
The string that matches the query string specified in the ‘SuggestRequest`.
Instance Attribute Details
#id ⇒ String
The document ID of the suggested document.
774 775 776 777 778 779 780 |
# File 'lib/aws-sdk-cloudsearchdomain/types.rb', line 774 class SuggestionMatch < Struct.new( :suggestion, :score, :id) SENSITIVE = [] include Aws::Structure end |
#score ⇒ Integer
The relevance score of a suggested match.
774 775 776 777 778 779 780 |
# File 'lib/aws-sdk-cloudsearchdomain/types.rb', line 774 class SuggestionMatch < Struct.new( :suggestion, :score, :id) SENSITIVE = [] include Aws::Structure end |
#suggestion ⇒ String
The string that matches the query string specified in the ‘SuggestRequest`.
774 775 776 777 778 779 780 |
# File 'lib/aws-sdk-cloudsearchdomain/types.rb', line 774 class SuggestionMatch < Struct.new( :suggestion, :score, :id) SENSITIVE = [] include Aws::Structure end |