logo
pub struct DescribeQuerySuggestionsConfigResponse {
    pub include_queries_without_user_information: Option<bool>,
    pub last_clear_time: Option<f64>,
    pub last_suggestions_build_time: Option<f64>,
    pub minimum_number_of_querying_users: Option<i64>,
    pub minimum_query_count: Option<i64>,
    pub mode: Option<String>,
    pub query_log_look_back_window_in_days: Option<i64>,
    pub status: Option<String>,
    pub total_suggestions_count: Option<i64>,
}

Fields

include_queries_without_user_information: Option<bool>

Shows whether Amazon Kendra uses all queries or only uses queries that include user information to generate query suggestions.

last_clear_time: Option<f64>

Shows the date-time query suggestions for an index was last cleared.

After you clear suggestions, Amazon Kendra learns new suggestions based on new queries added to the query log from the time you cleared suggestions. Amazon Kendra only considers re-occurences of a query from the time you cleared suggestions.

last_suggestions_build_time: Option<f64>

Shows the date-time query suggestions for an index was last updated.

minimum_number_of_querying_users: Option<i64>

Shows the minimum number of unique users who must search a query in order for the query to be eligible to suggest to your users.

minimum_query_count: Option<i64>

Shows the minimum number of times a query must be searched in order for the query to be eligible to suggest to your users.

mode: Option<String>

Shows whether query suggestions are currently in ENABLED mode or LEARN_ONLY mode.

By default, Amazon Kendra enables query suggestions.LEARN_ONLY turns off query suggestions for your users. You can change the mode using the UpdateQuerySuggestionsConfig operation.

query_log_look_back_window_in_days: Option<i64>

Shows how recent your queries are in your query log time window (in days).

status: Option<String>

Shows whether the status of query suggestions settings is currently Active or Updating.

Active means the current settings apply and Updating means your changed settings are in the process of applying.

total_suggestions_count: Option<i64>

Shows the current total count of query suggestions for an index.

This count can change when you update your query suggestions settings, if you filter out certain queries from suggestions using a block list, and as the query log accumulates more queries for Amazon Kendra to learn from.

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