Class: Aws::CloudSearchDomain::Types::SuggestModel
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudSearchDomain::Types::SuggestModel
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudsearchdomain/types.rb
Overview
Container for the suggestion information returned in a ‘SuggestResponse`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#found ⇒ Integer
The number of documents that were found to match the query string.
-
#query ⇒ String
The query string specified in the suggest request.
-
#suggestions ⇒ Array<Types::SuggestionMatch>
The documents that match the query string.
Instance Attribute Details
#found ⇒ Integer
The number of documents that were found to match the query string.
691 692 693 694 695 696 697 |
# File 'lib/aws-sdk-cloudsearchdomain/types.rb', line 691 class SuggestModel < Struct.new( :query, :found, :suggestions) SENSITIVE = [] include Aws::Structure end |
#query ⇒ String
The query string specified in the suggest request.
691 692 693 694 695 696 697 |
# File 'lib/aws-sdk-cloudsearchdomain/types.rb', line 691 class SuggestModel < Struct.new( :query, :found, :suggestions) SENSITIVE = [] include Aws::Structure end |
#suggestions ⇒ Array<Types::SuggestionMatch>
The documents that match the query string.
691 692 693 694 695 696 697 |
# File 'lib/aws-sdk-cloudsearchdomain/types.rb', line 691 class SuggestModel < Struct.new( :query, :found, :suggestions) SENSITIVE = [] include Aws::Structure end |