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 ==
.impl StructuralPartialEq for InitialResponseSetting
Auto Trait Implementations§
impl Freeze for InitialResponseSetting
impl RefUnwindSafe for InitialResponseSetting
impl Send for InitialResponseSetting
impl Sync for InitialResponseSetting
impl Unpin for InitialResponseSetting
impl UnwindSafe for InitialResponseSetting
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more