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

GetBuiltinIntentsRequest

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

§Properties

§
locale?: Locale | null
[src]

A list of locales that the intent supports.

§
maxResults?: number | null
[src]

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

§
nextToken?: string | null
[src]

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.

§
signatureContains?: string | null
[src]

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.