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

StartJobRunRequest

import type { StartJobRunRequest } from "https://aws-api.deno.dev/v0.4/services/emrserverless.ts?docs=full";
interface StartJobRunRequest {
applicationId: string;
clientToken: string;
configurationOverrides?: ConfigurationOverrides | null;
executionRoleArn: string;
executionTimeoutMinutes?: number | null;
jobDriver?: JobDriver | null;
name?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
applicationId: string
[src]

The ID of the application on which to run the job.

§
clientToken: string
[src]

The client idempotency token of the job run to start. Its value must be unique for each request.

§
configurationOverrides?: ConfigurationOverrides | null
[src]

The configuration overrides for the job run.

§
executionRoleArn: string
[src]

The execution role ARN for the job run.

§
executionTimeoutMinutes?: number | null
[src]

The maximum duration for the job run to run. If the job run runs beyond this duration, it will be automatically cancelled.

§
jobDriver?: JobDriver | null
[src]

The job driver for the job run.

§
name?: string | null
[src]

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

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

The tags assigned to the job run.