Class: Aws::Kendra::Types::FeaturedDocumentWithMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::FeaturedDocumentWithMetadata
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
A featured document with its metadata information. 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 featured document with its metadata.
-
#title ⇒ String
The main title of the featured document.
-
#uri ⇒ String
The source URI location of the featured document.
Instance Attribute Details
#id ⇒ String
The identifier of the featured document with its metadata. 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.
5358 5359 5360 5361 5362 5363 5364 |
# File 'lib/aws-sdk-kendra/types.rb', line 5358 class FeaturedDocumentWithMetadata < Struct.new( :id, :title, :uri) SENSITIVE = [] include Aws::Structure end |
#title ⇒ String
The main title of the featured document.
5358 5359 5360 5361 5362 5363 5364 |
# File 'lib/aws-sdk-kendra/types.rb', line 5358 class FeaturedDocumentWithMetadata < Struct.new( :id, :title, :uri) SENSITIVE = [] include Aws::Structure end |
#uri ⇒ String
The source URI location of the featured document.
5358 5359 5360 5361 5362 5363 5364 |
# File 'lib/aws-sdk-kendra/types.rb', line 5358 class FeaturedDocumentWithMetadata < Struct.new( :id, :title, :uri) SENSITIVE = [] include Aws::Structure end |