Struct rusoto_lex_models::GetUtterancesViewRequest[][src]

pub struct GetUtterancesViewRequest {
    pub bot_name: String,
    pub bot_versions: Vec<String>,
    pub status_type: String,
}

Fields

The name of the bot for which utterance information should be returned.

An array of bot versions for which utterance information should be returned. The limit is 5 versions per request.

To return utterances that were recognized and handled, useDetected. To return utterances that were not recognized, use Missed.

Trait Implementations

impl Default for GetUtterancesViewRequest
[src]

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

impl Debug for GetUtterancesViewRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetUtterancesViewRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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