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

GetBotAliasesRequest

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

§Properties

§
botName: string
[src]

The name of the bot.

§
maxResults?: number | null
[src]

The maximum number of aliases to return in the response. The default is 50. .

§
nameContains?: string | null
[src]

Substring to match in bot alias names. An alias 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 for fetching the next page of aliases. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of aliases, specify the pagination token in the next request.