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

The execution role ARN for the job run.

§
jobDriver?: JobDriver | null
[src]

The job driver for the job run.

§
jobTemplateId?: string | null
[src]

The job template ID to be used to start the job run.

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

The values of job template parameters to start a job run.

§
name?: string | null
[src]

The name of the job run.

§
releaseLabel?: string | null
[src]

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

§
retryPolicyConfiguration?: RetryPolicyConfiguration | null
[src]

The retry policy configuration 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.