Struct aws_sdk_lexmodelsv2::types::InitialResponseSetting
source · #[non_exhaustive]pub struct InitialResponseSetting {
pub initial_response: Option<ResponseSpecification>,
pub next_step: Option<DialogState>,
pub conditional: Option<ConditionalSpecification>,
pub code_hook: Option<DialogCodeHookInvocationSetting>,
}
Expand description
Configuration setting for a response sent to the user before Amazon Lex starts eliciting slots.
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.initial_response: Option<ResponseSpecification>
Specifies a list of message groups that Amazon Lex uses to respond the user input.
next_step: Option<DialogState>
The next step in the conversation.
conditional: Option<ConditionalSpecification>
Provides a list of conditional branches. Branches are evaluated in the order that they are entered in the list. The first branch with a condition that evaluates to true is executed. The last branch in the list is the default branch. The default branch should not have any condition expression. The default branch is executed if no other branch has a matching condition.
code_hook: Option<DialogCodeHookInvocationSetting>
Settings that specify the dialog code hook that is called by Amazon Lex at a step of the conversation.
Implementations§
source§impl InitialResponseSetting
impl InitialResponseSetting
sourcepub fn initial_response(&self) -> Option<&ResponseSpecification>
pub fn initial_response(&self) -> Option<&ResponseSpecification>
Specifies a list of message groups that Amazon Lex uses to respond the user input.
sourcepub fn next_step(&self) -> Option<&DialogState>
pub fn next_step(&self) -> Option<&DialogState>
The next step in the conversation.
sourcepub fn conditional(&self) -> Option<&ConditionalSpecification>
pub fn conditional(&self) -> Option<&ConditionalSpecification>
Provides a list of conditional branches. Branches are evaluated in the order that they are entered in the list. The first branch with a condition that evaluates to true is executed. The last branch in the list is the default branch. The default branch should not have any condition expression. The default branch is executed if no other branch has a matching condition.
sourcepub fn code_hook(&self) -> Option<&DialogCodeHookInvocationSetting>
pub fn code_hook(&self) -> Option<&DialogCodeHookInvocationSetting>
Settings that specify the dialog code hook that is called by Amazon Lex at a step of the conversation.
source§impl InitialResponseSetting
impl InitialResponseSetting
sourcepub fn builder() -> InitialResponseSettingBuilder
pub fn builder() -> InitialResponseSettingBuilder
Creates a new builder-style object to manufacture InitialResponseSetting
.
Trait Implementations§
source§impl Clone for InitialResponseSetting
impl Clone for InitialResponseSetting
source§fn clone(&self) -> InitialResponseSetting
fn clone(&self) -> InitialResponseSetting
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for InitialResponseSetting
impl Debug for InitialResponseSetting
source§impl PartialEq for InitialResponseSetting
impl PartialEq for InitialResponseSetting
source§fn eq(&self, other: &InitialResponseSetting) -> bool
fn eq(&self, other: &InitialResponseSetting) -> bool
self
and other
values to be equal, and is used
by ==
.