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

TextTranslationJobFilter

import type { TextTranslationJobFilter } from "https://aws-api.deno.dev/v0.4/services/translate.ts?docs=full";

Provides information for filtering a list of translation jobs. For more information, see "ListTextTranslationJobs".

interface TextTranslationJobFilter {
JobName?: string | null;
JobStatus?: JobStatus | null;
SubmittedAfterTime?: Date | number | null;
SubmittedBeforeTime?: Date | number | null;
}

§Properties

§
JobName?: string | null
[src]

Filters the list of jobs by name.

§
JobStatus?: JobStatus | null
[src]

Filters the list of jobs based by job status.

§
SubmittedAfterTime?: Date | number | null
[src]

Filters the list of jobs based on the time that the job was submitted for processing and returns only the jobs submitted after the specified time. Jobs are returned in descending order, newest to oldest.

§
SubmittedBeforeTime?: Date | number | null
[src]

Filters the list of jobs based on the time that the job was submitted for processing and returns only the jobs submitted before the specified time. Jobs are returned in ascending order, oldest to newest.