Struct rusoto_lex_models::GetSlotTypeVersionsRequest[][src]

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

Fields

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

The name of the slot type for which versions should be returned.

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

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

impl Debug for GetSlotTypeVersionsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetSlotTypeVersionsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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