Struct rusoto_lex_models::Prompt[][src]

pub struct Prompt {
    pub max_attempts: i64,
    pub messages: Vec<Message>,
    pub response_card: Option<String>,
}

Obtains information from the user. To define a prompt, provide one or more messages and specify the number of attempts to get information from the user. If you provide more than one message, Amazon Lex chooses one of the messages to use to prompt the user. For more information, see how-it-works.

Fields

The number of times to prompt the user for information.

An array of objects, each of which provides a message string and its type. You can specify the message string in plain text or in Speech Synthesis Markup Language (SSML).

A response card. Amazon Lex uses this prompt at runtime, in the PostText API response. It substitutes session attributes and slot values for placeholders in the response card. For more information, see ex-resp-card.

Trait Implementations

impl Default for Prompt
[src]

Returns the "default value" for a type. Read more

impl Debug for Prompt
[src]

Formats the value using the given formatter. Read more

impl Clone for Prompt
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Prompt
[src]

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 Prompt

impl Sync for Prompt