Class: Aws::CloudSearchDomain::Types::Hits
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudSearchDomain::Types::Hits
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudsearchdomain/types.rb
Overview
The collection of documents that match the search request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cursor ⇒ String
A cursor that can be used to retrieve the next set of matching documents when you want to page through a large result set.
-
#found ⇒ Integer
The total number of documents that match the search request.
-
#hit ⇒ Array<Types::Hit>
A document that matches the search request.
-
#start ⇒ Integer
The index of the first matching document.
Instance Attribute Details
#cursor ⇒ String
A cursor that can be used to retrieve the next set of matching documents when you want to page through a large result set.
205 206 207 208 209 210 211 212 |
# File 'lib/aws-sdk-cloudsearchdomain/types.rb', line 205 class Hits < Struct.new( :found, :start, :cursor, :hit) SENSITIVE = [] include Aws::Structure end |
#found ⇒ Integer
The total number of documents that match the search request.
205 206 207 208 209 210 211 212 |
# File 'lib/aws-sdk-cloudsearchdomain/types.rb', line 205 class Hits < Struct.new( :found, :start, :cursor, :hit) SENSITIVE = [] include Aws::Structure end |
#hit ⇒ Array<Types::Hit>
A document that matches the search request.
205 206 207 208 209 210 211 212 |
# File 'lib/aws-sdk-cloudsearchdomain/types.rb', line 205 class Hits < Struct.new( :found, :start, :cursor, :hit) SENSITIVE = [] include Aws::Structure end |