Struct rusoto_lex_models::GetIntentsRequest[][src]

pub struct GetIntentsRequest {
    pub max_results: Option<i64>,
    pub name_contains: Option<String>,
    pub next_token: Option<String>,
}

Fields

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

Substring to match in intent names. An intent will be returned if any part of its name matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz."

A pagination token that fetches the next page of intents. If the response to this API call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of intents, specify the pagination token in the next request.

Trait Implementations

impl Default for GetIntentsRequest
[src]

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

impl Debug for GetIntentsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetIntentsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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