Struct rusoto_lex_models::GetBotVersionsResponse[][src]

pub struct GetBotVersionsResponse {
    pub bots: Option<Vec<BotMetadata>>,
    pub next_token: Option<String>,
}

Fields

An array of BotMetadata objects, one for each numbered version of the bot plus one for the $LATEST version.

A pagination token for fetching the next page of bot versions. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of versions, specify the pagination token in the next request.

Trait Implementations

impl Default for GetBotVersionsResponse
[src]

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

impl Debug for GetBotVersionsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetBotVersionsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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