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.3/services/emrcontainers.ts?docs=full";
interface StartJobRunRequest {
clientToken: string;
configurationOverrides?: ConfigurationOverrides | null;
executionRoleArn: string;
jobDriver: JobDriver;
name?: string | null;
releaseLabel: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
virtualClusterId: string;
}

§Properties

§
clientToken: string
[src]

The client idempotency token of the job run request.

§
configurationOverrides?: ConfigurationOverrides | null
[src]

The configuration overrides for the job run.

§
executionRoleArn: string
[src]

The execution role ARN for the job run.

§
jobDriver: JobDriver
[src]

The job driver for the job run.

§
name?: string | null
[src]

The name of the job run.

§
releaseLabel: string
[src]

The Amazon EMR release version to use for the job run.

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

The tags assigned to job runs.

§
virtualClusterId: string
[src]

The virtual cluster ID for which the job run request is submitted.