JobCommand

data class JobCommand(val name: String? = null, val pythonVersion: String? = null, val scriptLocation: String)

Constructors

Link copied to clipboard
constructor(name: String? = null, pythonVersion: String? = null, scriptLocation: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val name: String? = null

The name of the job command. Defaults to glueetl. Use pythonshell for Python Shell Job Type, or gluestreaming for Streaming Job Type. max_capacity needs to be set if pythonshell is chosen.

Link copied to clipboard
val pythonVersion: String? = null

The Python version being used to execute a Python shell job. Allowed values are 2, 3 or 3.9. Version 3 refers to Python 3.6.

Link copied to clipboard

Specifies the S3 path to a script that executes a job.