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

DominantLanguageDetectionJobFilter

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

Provides information for filtering a list of dominant language detection jobs. For more information, see the operation.

interface DominantLanguageDetectionJobFilter {
JobName?: string | null;
JobStatus?: JobStatus | null;
SubmitTimeAfter?: Date | number | null;
SubmitTimeBefore?: Date | number | null;
}

§Properties

§
JobName?: string | null
[src]

Filters on the name of the job.

§
JobStatus?: JobStatus | null
[src]

Filters the list of jobs based on job status. Returns only jobs with the specified status.

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

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

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

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