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

TopicsDetectionJobFilter

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

Provides information for filtering topic detection jobs. For more information, see .

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

§Properties

§
JobName?: string | null
[src]
§
JobStatus?: JobStatus | null
[src]

Filters the list of topic detection 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. Only returns jobs submitted after the specified time. Jobs are returned in ascending order, oldest to newest.

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

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