Class: Aws::Kendra::Types::FeaturedDocument
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::FeaturedDocument
- Defined in:
- gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb
Overview
A featured document. This document is displayed at the top of the search results page, placed above all other results for certain queries. If there's an exact match of a query, then the document is featured in the search results.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The identifier of the document to feature in the search results.
Instance Attribute Details
#id ⇒ String
The identifier of the document to feature in the search results. You can use the Query API to search for specific documents with their document IDs included in the result items, or you can use the console.
5303 5304 5305 5306 5307 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 5303 class FeaturedDocument < Struct.new( :id) SENSITIVE = [] include Aws::Structure end |