Class: Aws::Kendra::Types::FeaturedDocumentWithMetadata

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#idString

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.

[1]: docs.aws.amazon.com/kendra/latest/dg/API_Query.html

Returns:

  • (String)


5273
5274
5275
5276
5277
5278
5279
# File 'lib/aws-sdk-kendra/types.rb', line 5273

class FeaturedDocumentWithMetadata < Struct.new(
  :id,
  :title,
  :uri)
  SENSITIVE = []
  include Aws::Structure
end

#titleString

The main title of the featured document.

Returns:

  • (String)


5273
5274
5275
5276
5277
5278
5279
# File 'lib/aws-sdk-kendra/types.rb', line 5273

class FeaturedDocumentWithMetadata < Struct.new(
  :id,
  :title,
  :uri)
  SENSITIVE = []
  include Aws::Structure
end

#uriString

The source URI location of the featured document.

Returns:

  • (String)


5273
5274
5275
5276
5277
5278
5279
# File 'lib/aws-sdk-kendra/types.rb', line 5273

class FeaturedDocumentWithMetadata < Struct.new(
  :id,
  :title,
  :uri)
  SENSITIVE = []
  include Aws::Structure
end