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

JobRunSummary

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

The summary of attributes associated with a job run.

interface JobRunSummary {
applicationId: string;
arn: string;
createdAt: Date | number;
createdBy: string;
executionRole: string;
id: string;
name?: string | null;
releaseLabel: string;
state: JobRunState;
stateDetails: string;
type?: string | null;
updatedAt: Date | number;
}

§Properties

§
applicationId: string
[src]

The ID of the application the job is running on.

§
arn: string
[src]

The ARN of the job run.

§
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.

§
id: string
[src]

The ID of the job run.

§
name?: string | null
[src]

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

§
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.

§
type?: string | null
[src]

The type of job run, such as Spark or Hive.

§
updatedAt: Date | number
[src]

The date and time when the job run was last updated.