#[non_exhaustive]pub struct StillWaitingResponseSpecification {
pub message_groups: Option<Vec<MessageGroup>>,
pub frequency_in_seconds: Option<i32>,
pub timeout_in_seconds: Option<i32>,
pub allow_interrupt: Option<bool>,
}Expand description
Defines the messages that Amazon Lex sends to a user to remind them that the bot is waiting for a response.
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.message_groups: Option<Vec<MessageGroup>>One or more message groups, each containing one or more messages, that define the prompts that Amazon Lex sends to the user.
frequency_in_seconds: Option<i32>How often a message should be sent to the user. Minimum of 1 second, maximum of 5 minutes.
timeout_in_seconds: Option<i32>If Amazon Lex waits longer than this length of time for a response, it will stop sending messages.
allow_interrupt: Option<bool>Indicates that the user can interrupt the response by speaking while the message is being played.
Implementations
One or more message groups, each containing one or more messages, that define the prompts that Amazon Lex sends to the user.
How often a message should be sent to the user. Minimum of 1 second, maximum of 5 minutes.
If Amazon Lex waits longer than this length of time for a response, it will stop sending messages.
Indicates that the user can interrupt the response by speaking while the message is being played.
Creates a new builder-style object to manufacture StillWaitingResponseSpecification
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl Send for StillWaitingResponseSpecification
impl Sync for StillWaitingResponseSpecification
impl Unpin for StillWaitingResponseSpecification
Blanket Implementations
Mutably borrows from an owned value. Read more
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