Struct rusoto_lex_models::GetIntentVersionsRequest [] [src]

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

Fields

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

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

A pagination token for fetching the next page of intent 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 GetIntentVersionsRequest
[src]

[src]

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

impl Debug for GetIntentVersionsRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GetIntentVersionsRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations