Struct rusoto_lex_models::GetBotVersionsRequest[][src]

pub struct GetBotVersionsRequest {
    pub max_results: Option<i64>,
    pub name: String,
    pub next_token: Option<String>,
}

Fields

The maximum number of bot versions to return in the response. The default is 10.

The name of the bot for which versions should be returned.

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 GetBotVersionsRequest
[src]

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

impl Debug for GetBotVersionsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetBotVersionsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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