Struct rusoto_lex_models::GetSlotTypesRequest[][src]

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

Fields

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

Substring to match in slot type names. A slot type 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 slot types. If the response to this API call is truncated, Amazon Lex returns a pagination token in the response. To fetch next page of slot types, specify the pagination token in the next request.

Trait Implementations

impl Default for GetSlotTypesRequest
[src]

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

impl Debug for GetSlotTypesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetSlotTypesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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