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

JobRun

import type { JobRun } from "https://aws-api.deno.dev/v0.3/services/emrcontainers.ts?docs=full";

This entity describes a job run. A job run is a unit of work, such as a Spark jar, PySpark script, or SparkSQL query, that you submit to Amazon EMR on EKS.

interface JobRun {
arn?: string | null;
clientToken?: string | null;
configurationOverrides?: ConfigurationOverrides | null;
createdAt?: Date | number | null;
createdBy?: string | null;
executionRoleArn?: string | null;
failureReason?: FailureReason | null;
finishedAt?: Date | number | null;
id?: string | null;
jobDriver?: JobDriver | null;
name?: string | null;
releaseLabel?: string | null;
state?: JobRunState | null;
stateDetails?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
virtualClusterId?: string | null;
}

§Properties

§
arn?: string | null
[src]

The ARN of job run.

§
clientToken?: string | null
[src]

The client token used to start a job run.

§
configurationOverrides?: ConfigurationOverrides | null
[src]

The configuration settings that are used to override default configuration.

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

The date and time when the job run was created.

§
createdBy?: string | null
[src]

The user who created the job run.

§
executionRoleArn?: string | null
[src]

The execution role ARN of the job run.

§
failureReason?: FailureReason | null
[src]

The reasons why the job run has failed.

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

The date and time when the job run has finished.

§
id?: string | null
[src]

The ID of the job run.

§
jobDriver?: JobDriver | null
[src]

Parameters of job driver for the job run.

§
name?: string | null
[src]

The name of the job run.

§
releaseLabel?: string | null
[src]

The release version of Amazon EMR.

§
state?: JobRunState | null
[src]

The state of the job run.

§
stateDetails?: string | null
[src]

Additional details of the job run state.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The assigned tags of the job run.

§
virtualClusterId?: string | null
[src]

The ID of the job run's virtual cluster.