Class: Aws::CloudSearchDomain::Types::SearchResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudSearchDomain::Types::SearchResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudsearchdomain/types.rb
Overview
The result of a ‘Search` request. Contains the documents that match the specified search criteria and any requested fields, highlights, and facet information.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#facets ⇒ Hash<String,Types::BucketInfo>
The requested facet information.
-
#hits ⇒ Types::Hits
The documents that match the search criteria.
-
#stats ⇒ Hash<String,Types::FieldStats>
The requested field statistics information.
-
#status ⇒ Types::SearchStatus
The status information returned for the search request.
Instance Attribute Details
#facets ⇒ Hash<String,Types::BucketInfo>
The requested facet information.
649 650 651 652 653 654 655 656 |
# File 'lib/aws-sdk-cloudsearchdomain/types.rb', line 649 class SearchResponse < Struct.new( :status, :hits, :facets, :stats) SENSITIVE = [] include Aws::Structure end |
#hits ⇒ Types::Hits
The documents that match the search criteria.
649 650 651 652 653 654 655 656 |
# File 'lib/aws-sdk-cloudsearchdomain/types.rb', line 649 class SearchResponse < Struct.new( :status, :hits, :facets, :stats) SENSITIVE = [] include Aws::Structure end |
#stats ⇒ Hash<String,Types::FieldStats>
The requested field statistics information.
649 650 651 652 653 654 655 656 |
# File 'lib/aws-sdk-cloudsearchdomain/types.rb', line 649 class SearchResponse < Struct.new( :status, :hits, :facets, :stats) SENSITIVE = [] include Aws::Structure end |
#status ⇒ Types::SearchStatus
The status information returned for the search request.
649 650 651 652 653 654 655 656 |
# File 'lib/aws-sdk-cloudsearchdomain/types.rb', line 649 class SearchResponse < Struct.new( :status, :hits, :facets, :stats) SENSITIVE = [] include Aws::Structure end |