Struct rusoto_lex_models::GetBuiltinSlotTypesRequest[][src]

pub struct GetBuiltinSlotTypesRequest {
    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 slot type supports.

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

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

Substring to match in built-in slot type signatures. A slot type will be returned if any part of its signature matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz."

Trait Implementations

impl Default for GetBuiltinSlotTypesRequest
[src]

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

impl Debug for GetBuiltinSlotTypesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetBuiltinSlotTypesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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