[][src]Struct rusoto_lex_runtime::DialogAction

pub struct DialogAction {
    pub fulfillment_state: Option<String>,
    pub intent_name: Option<String>,
    pub message: Option<String>,
    pub message_format: Option<String>,
    pub slot_to_elicit: Option<String>,
    pub slots: Option<HashMap<String, String>>,
    pub type_: String,
}

Describes the next action that the bot should take in its interaction with the user and provides information about the context in which the action takes place. Use the DialogAction data type to set the interaction to a specific state, or to return the interaction to a previous state.

Fields

fulfillment_state: Option<String>

The fulfillment state of the intent. The possible values are:

  • Failed - The Lambda function associated with the intent failed to fulfill the intent.

  • Fulfilled - The intent has fulfilled by the Lambda function associated with the intent.

  • ReadyForFulfillment - All of the information necessary for the intent is present and the intent ready to be fulfilled by the client application.

intent_name: Option<String>

The name of the intent.

message: Option<String>

The message that should be shown to the user. If you don't specify a message, Amazon Lex will use the message configured for the intent.

message_format: Option<String>
  • PlainText - The message contains plain UTF-8 text.

  • CustomPayload - The message is a custom format for the client.

  • SSML - The message contains text formatted for voice output.

  • Composite - The message contains an escaped JSON object containing one or more messages. For more information, see Message Groups.

slot_to_elicit: Option<String>

The name of the slot that should be elicited from the user.

slots: Option<HashMap<String, String>>

Map of the slots that have been gathered and their values.

type_: String

The next action that the bot should take in its interaction with the user. The possible values are:

  • ConfirmIntent - The next action is asking the user if the intent is complete and ready to be fulfilled. This is a yes/no question such as "Place the order?"

  • Close - Indicates that the there will not be a response from the user. For example, the statement "Your order has been placed" does not require a response.

  • Delegate - The next action is determined by Amazon Lex.

  • ElicitIntent - The next action is to determine the intent that the user wants to fulfill.

  • ElicitSlot - The next action is to elicit a slot value from the user.

Trait Implementations

impl Clone for DialogAction[src]

impl Debug for DialogAction[src]

impl Default for DialogAction[src]

impl<'de> Deserialize<'de> for DialogAction[src]

impl PartialEq<DialogAction> for DialogAction[src]

impl Serialize for DialogAction[src]

impl StructuralPartialEq for DialogAction[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.