#[non_exhaustive]pub struct SearchQuickResponsesInput {
pub knowledge_base_id: Option<String>,
pub search_expression: Option<QuickResponseSearchExpression>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub attributes: Option<HashMap<String, String>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.knowledge_base_id: Option<String>The identifier of the knowledge base. This should be a QUICK_RESPONSES type knowledge base. Can be either the ID or the ARN. URLs cannot contain the ARN.
search_expression: Option<QuickResponseSearchExpression>The search expression for querying the quick response.
next_token: Option<String>The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
max_results: Option<i32>The maximum number of results to return per page.
attributes: Option<HashMap<String, String>>The user-defined Amazon Connect contact attributes to be resolved when search results are returned.
Implementations§
source§impl SearchQuickResponsesInput
impl SearchQuickResponsesInput
sourcepub fn knowledge_base_id(&self) -> Option<&str>
pub fn knowledge_base_id(&self) -> Option<&str>
The identifier of the knowledge base. This should be a QUICK_RESPONSES type knowledge base. Can be either the ID or the ARN. URLs cannot contain the ARN.
sourcepub fn search_expression(&self) -> Option<&QuickResponseSearchExpression>
pub fn search_expression(&self) -> Option<&QuickResponseSearchExpression>
The search expression for querying the quick response.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return per page.
sourcepub fn attributes(&self) -> Option<&HashMap<String, String>>
pub fn attributes(&self) -> Option<&HashMap<String, String>>
The user-defined Amazon Connect contact attributes to be resolved when search results are returned.
source§impl SearchQuickResponsesInput
impl SearchQuickResponsesInput
sourcepub fn builder() -> SearchQuickResponsesInputBuilder
pub fn builder() -> SearchQuickResponsesInputBuilder
Creates a new builder-style object to manufacture SearchQuickResponsesInput.
Trait Implementations§
source§impl Clone for SearchQuickResponsesInput
impl Clone for SearchQuickResponsesInput
source§fn clone(&self) -> SearchQuickResponsesInput
fn clone(&self) -> SearchQuickResponsesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for SearchQuickResponsesInput
impl Debug for SearchQuickResponsesInput
source§impl PartialEq for SearchQuickResponsesInput
impl PartialEq for SearchQuickResponsesInput
source§fn eq(&self, other: &SearchQuickResponsesInput) -> bool
fn eq(&self, other: &SearchQuickResponsesInput) -> bool
self and other values to be equal, and is used
by ==.