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

ListTranscriptionJobsRequest

import type { ListTranscriptionJobsRequest } from "https://aws-api.deno.dev/v0.3/services/transcribeservice.ts?docs=full";
interface ListTranscriptionJobsRequest {
JobNameContains?: string | null;
MaxResults?: number | null;
NextToken?: string | null;
Status?: TranscriptionJobStatus | null;
}

§Properties

§
JobNameContains?: string | null
[src]

When specified, the jobs returned in the list are limited to jobs whose name contains the specified string.

§
MaxResults?: number | null
[src]

The maximum number of jobs to return in each page of results. If there are fewer results than the value you specify, only the actual results are returned. If you do not specify a value, the default of 5 is used.

§
NextToken?: string | null
[src]

If the result of the previous request to ListTranscriptionJobs is truncated, include the NextToken to fetch the next set of jobs.

§

When specified, returns only transcription jobs with the specified status. Jobs are ordered by creation date, with the newest jobs returned first. If you don’t specify a status, Amazon Transcribe returns all transcription jobs ordered by creation date.