Struct rusoto_lex_models::GetBuiltinIntentsRequest [] [src]

pub struct GetBuiltinIntentsRequest {
    pub locale: Option<String>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub signature_contains: Option<String>,
}

Fields

A list of locales that the intent supports.

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

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

Substring to match in built-in intent signatures. An intent will be returned if any part of its signature matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz." To find the signature for an intent, see Standard Built-in Intents in the Alexa Skills Kit.

Trait Implementations

impl Default for GetBuiltinIntentsRequest
[src]

[src]

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

impl Debug for GetBuiltinIntentsRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GetBuiltinIntentsRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations