Struct rusoto_lex_models::GetIntentVersionsResponse[][src]

pub struct GetIntentVersionsResponse {
    pub intents: Option<Vec<IntentMetadata>>,
    pub next_token: Option<String>,
}

Fields

An array of IntentMetadata objects, one for each numbered version of the intent plus one for the $LATEST version.

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

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

impl Debug for GetIntentVersionsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetIntentVersionsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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