Struct rusoto_lex_models::GetIntentResponse[][src]

pub struct GetIntentResponse {
    pub checksum: Option<String>,
    pub conclusion_statement: Option<Statement>,
    pub confirmation_prompt: Option<Prompt>,
    pub created_date: Option<f64>,
    pub description: Option<String>,
    pub dialog_code_hook: Option<CodeHook>,
    pub follow_up_prompt: Option<FollowUpPrompt>,
    pub fulfillment_activity: Option<FulfillmentActivity>,
    pub last_updated_date: Option<f64>,
    pub name: Option<String>,
    pub parent_intent_signature: Option<String>,
    pub rejection_statement: Option<Statement>,
    pub sample_utterances: Option<Vec<String>>,
    pub slots: Option<Vec<Slot>>,
    pub version: Option<String>,
}

Fields

Checksum of the intent.

After the Lambda function specified in the fulfillmentActivity element fulfills the intent, Amazon Lex conveys this statement to the user.

If defined in the bot, Amazon Lex uses prompt to confirm the intent before fulfilling the user's request. For more information, see PutIntent.

The date that the intent was created.

A description of the intent.

If defined in the bot, Amazon Amazon Lex invokes this Lambda function for each user input. For more information, see PutIntent.

If defined in the bot, Amazon Lex uses this prompt to solicit additional user activity after the intent is fulfilled. For more information, see PutIntent.

Describes how the intent is fulfilled. For more information, see PutIntent.

The date that the intent was updated. When you create a resource, the creation date and the last updated date are the same.

The name of the intent.

A unique identifier for a built-in intent.

If the user answers "no" to the question defined in confirmationPrompt, Amazon Lex responds with this statement to acknowledge that the intent was canceled.

An array of sample utterances configured for the intent.

An array of intent slots configured for the intent.

The version of the intent.

Trait Implementations

impl Default for GetIntentResponse
[src]

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

impl Debug for GetIntentResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetIntentResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetIntentResponse
[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