Struct rusoto_lex_models::GetIntentsResponse[][src]

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

Fields

An array of Intent objects. For more information, see PutBot.

If the response is truncated, the response includes a pagination token that you can specify in your next request to fetch the next page of intents.

Trait Implementations

impl Default for GetIntentsResponse
[src]

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

impl Debug for GetIntentsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetIntentsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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