[][src]Struct rusoto_kendra::SubmitFeedbackRequest

pub struct SubmitFeedbackRequest {
    pub click_feedback_items: Option<Vec<ClickFeedback>>,
    pub index_id: String,
    pub query_id: String,
    pub relevance_feedback_items: Option<Vec<RelevanceFeedback>>,
}

Fields

click_feedback_items: Option<Vec<ClickFeedback>>

Tells Amazon Kendra that a particular search result link was chosen by the user.

index_id: String

The identifier of the index that was queried.

query_id: String

The identifier of the specific query for which you are submitting feedback. The query ID is returned in the response to the operation.

relevance_feedback_items: Option<Vec<RelevanceFeedback>>

Provides Amazon Kendra with relevant or not relevant feedback for whether a particular item was relevant to the search.

Trait Implementations

impl Clone for SubmitFeedbackRequest[src]

impl Debug for SubmitFeedbackRequest[src]

impl Default for SubmitFeedbackRequest[src]

impl PartialEq<SubmitFeedbackRequest> for SubmitFeedbackRequest[src]

impl Serialize for SubmitFeedbackRequest[src]

impl StructuralPartialEq for SubmitFeedbackRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.