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.4/services/emrserverless.ts?docs=full";

Information about a job run. A job run is a unit of work, such as a Spark JAR, Hive query, or SparkSQL query, that you submit to an EMR Serverless application.

interface JobRun {
applicationId: string;
arn: string;
configurationOverrides?: ConfigurationOverrides | null;
createdAt: Date | number;
createdBy: string;
executionRole: string;
jobDriver: JobDriver;
jobRunId: string;
name?: string | null;
networkConfiguration?: NetworkConfiguration | null;
releaseLabel: string;
state: JobRunState;
stateDetails: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
totalExecutionDurationSeconds?: number | null;
totalResourceUtilization?: TotalResourceUtilization | null;
updatedAt: Date | number;
}

§Properties

§
applicationId: string
[src]

The ID of the application the job is running on.

§
arn: string
[src]

The execution role ARN of the job run.

§
configurationOverrides?: ConfigurationOverrides | null
[src]

The configuration settings that are used to override default configuration.

§
createdAt: Date | number
[src]

The date and time when the job run was created.

§
createdBy: string
[src]

The user who created the job run.

§
executionRole: string
[src]

The execution role ARN of the job run.

§
jobDriver: JobDriver
[src]

The job driver for the job run.

§
jobRunId: string
[src]

The ID of the job run.

§
name?: string | null
[src]

The optional job run name. This doesn't have to be unique.

§
networkConfiguration?: NetworkConfiguration | null
[src]
§
releaseLabel: string
[src]

The EMR release associated with the application your job is running on.

§

The state of the job run.

§
stateDetails: string
[src]

The state details of the job run.

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

The tags assigned to the job run.

§
totalExecutionDurationSeconds?: number | null
[src]

The job run total execution duration in seconds. This field is only available for job runs in a COMPLETED, FAILED, or CANCELLED state.

§
totalResourceUtilization?: TotalResourceUtilization | null
[src]

The aggregate vCPU, memory, and storage resources used from the time job start executing till the time job is terminated, rounded up to the nearest second.

§
updatedAt: Date | number
[src]

The date and time when the job run was updated.