MDAA TS Docs
    Preparing search index...

    Configuration for a Glue job command specifying script execution and runtime environment.

    Use cases: Job command configuration; Script execution; Runtime environment; ETL job setup

    AWS: Glue job command configuration for script execution and runtime environment

    Validation: name and scriptLocation are required; pythonVersion is optional with specific constraints

    interface JobCommand {
        name: JobCommandName;
        pythonVersion?: JobCommandPythonVersion;
        scriptLocation: string;
    }
    Index

    Properties

    Job type: 'glueetl' for Spark ETL or 'pythonshell' for Python scripts.

    pythonVersion?: JobCommandPythonVersion

    Python version for job runtime ('2' or '3').

    scriptLocation: string

    Relative path to the Glue script for job execution.