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

JobCommand

import type { JobCommand } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";

Specifies code that runs when a job is run.

interface JobCommand {
Name?: string | null;
PythonVersion?: string | null;
ScriptLocation?: string | null;
}

§Properties

§
Name?: string | null
[src]

The name of the job command. For an Apache Spark ETL job, this must be glueetl. For a Python shell job, it must be pythonshell. For an Apache Spark streaming ETL job, this must be gluestreaming.

§
PythonVersion?: string | null
[src]

The Python version being used to run a Python shell job. Allowed values are 2 or 3.

§
ScriptLocation?: string | null
[src]

Specifies the Amazon Simple Storage Service (Amazon S3) path to a script that runs a job.