[][src]Struct rusoto_lex_models::CreateIntentVersionResponse

pub struct CreateIntentVersionResponse {
    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 version created.

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

If defined, the prompt that Amazon Lex uses to confirm the user's intent before fulfilling it.

The date that the intent was created.

A description of the intent.

If defined, Amazon Lex invokes this Lambda function for each user input.

If defined, Amazon Lex uses this prompt to solicit additional user activity after the intent is fulfilled.

Describes how the intent is fulfilled.

The date that the intent was updated.

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 slot types that defines the information required to fulfill the intent.

The version number assigned to the new version of the intent.

Trait Implementations

impl Clone for CreateIntentVersionResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for CreateIntentVersionResponse
[src]

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

impl PartialEq<CreateIntentVersionResponse> for CreateIntentVersionResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for CreateIntentVersionResponse
[src]

Formats the value using the given formatter. Read more

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

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Mutably borrows from an owned value. Read more

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

impl<T> Erased for T

impl<T> Same for T

Should always be Self