Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GetSlotTypesRequest

import type { GetSlotTypesRequest } from "https://aws-api.deno.dev/v0.3/services/lexmodelbuildingservice.ts?docs=full";
interface GetSlotTypesRequest {
maxResults?: number | null;
nameContains?: string | null;
nextToken?: string | null;
}

§Properties

§
maxResults?: number | null
[src]

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

§
nameContains?: string | null
[src]

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."

§
nextToken?: string | null
[src]

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.