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

SearchAssociatedTranscriptsRequest

import type { SearchAssociatedTranscriptsRequest } from "https://aws-api.deno.dev/v0.4/services/lexmodelsv2.ts?docs=full";
interface SearchAssociatedTranscriptsRequest {
botId: string;
botRecommendationId: string;
botVersion: string;
localeId: string;
maxResults?: number | null;
nextIndex?: number | null;
searchOrder?: SearchOrder | null;
}

§Properties

§
botId: string
[src]

The unique identifier of the bot associated with the transcripts that you are searching.

§
botRecommendationId: string
[src]

The unique identifier of the bot recommendation associated with the transcripts to search.

§
botVersion: string
[src]

The version of the bot containing the transcripts that you are searching.

§

A list of filter objects.

§
localeId: string
[src]

The identifier of the language and locale of the transcripts to search. The string must match one of the supported locales. For more information, see Supported languages

§
maxResults?: number | null
[src]

The maximum number of bot recommendations to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned.

§
nextIndex?: number | null
[src]

If the response from the SearchAssociatedTranscriptsRequest operation contains more results than specified in the maxResults parameter, an index is returned in the response. Use that index in the nextIndex parameter to return the next page of results.

§
searchOrder?: SearchOrder | null
[src]

How SearchResults are ordered. Valid values are Ascending or Descending. The default is Descending.