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

GetBotChannelAssociationsRequest

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

§Properties

§
botAlias: string
[src]

An alias pointing to the specific version of the Amazon Lex bot to which this association is being made.

§
botName: string
[src]

The name of the Amazon Lex bot in the association.

§
maxResults?: number | null
[src]

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

§
nameContains?: string | null
[src]

Substring to match in channel association names. An association will be returned if any part of its name matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz." To return all bot channel associations, use a hyphen ("-") as the nameContains parameter.

§
nextToken?: string | null
[src]

A pagination token for fetching the next page of associations. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of associations, specify the pagination token in the next request.