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

ListJobRunsRequest

import type { ListJobRunsRequest } from "https://aws-api.deno.dev/v0.3/services/emrcontainers.ts?docs=full";
interface ListJobRunsRequest {
createdAfter?: Date | number | null;
createdBefore?: Date | number | null;
maxResults?: number | null;
name?: string | null;
nextToken?: string | null;
states?: JobRunState[] | null;
virtualClusterId: string;
}

§Properties

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

The date and time after which the job runs were submitted.

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

The date and time before which the job runs were submitted.

§
maxResults?: number | null
[src]

The maximum number of job runs that can be listed.

§
name?: string | null
[src]

The name of the job run.

§
nextToken?: string | null
[src]

The token for the next set of job runs to return.

§
states?: JobRunState[] | null
[src]

The states of the job run.

§
virtualClusterId: string
[src]

The ID of the virtual cluster for which to list the job run.