logo
pub struct QueryResultItem {
    pub additional_attributes: Option<Vec<AdditionalResultAttribute>>,
    pub document_attributes: Option<Vec<DocumentAttribute>>,
    pub document_excerpt: Option<TextWithHighlights>,
    pub document_id: Option<String>,
    pub document_title: Option<TextWithHighlights>,
    pub document_uri: Option<String>,
    pub feedback_token: Option<String>,
    pub id: Option<String>,
    pub score_attributes: Option<ScoreAttributes>,
    pub type_: Option<String>,
}
Expand description

A single query result.

A query result contains information about a document returned by the query. This includes the original location of the document, a list of attributes assigned to the document, and relevant text from the document that satisfies the query.

Fields

additional_attributes: Option<Vec<AdditionalResultAttribute>>

One or more additional attributes associated with the query result.

document_attributes: Option<Vec<DocumentAttribute>>

An array of document attributes for the document that the query result maps to. For example, the document author (Author) or the source URI (SourceUri) of the document.

document_excerpt: Option<TextWithHighlights>

An extract of the text in the document. Contains information about highlighting the relevant terms in the excerpt.

document_id: Option<String>

The unique identifier for the document.

document_title: Option<TextWithHighlights>

The title of the document. Contains the text of the title and information for highlighting the relevant terms in the title.

document_uri: Option<String>

The URI of the original location of the document.

feedback_token: Option<String>

A token that identifies a particular result from a particular query. Use this token to provide click-through feedback for the result. For more information, see Submitting feedback .

id: Option<String>

The unique identifier for the query result.

score_attributes: Option<ScoreAttributes>

Indicates the confidence that Amazon Kendra has that a result matches the query that you provided. Each result is placed into a bin that indicates the confidence, VERY_HIGH, HIGH, MEDIUM and LOW. You can use the score to determine if a response meets the confidence needed for your application.

The field is only set to LOW when the Type field is set to DOCUMENT and Amazon Kendra is not confident that the result matches the query.

type_: Option<String>

The type of document.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more