Interface PythonSparkJobExecutableProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
PythonSparkJobExecutableProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:42.587Z") @Stability(Experimental) public interface PythonSparkJobExecutableProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props for creating a Python Spark (ETL or Streaming) job executable.

Example:

 Job.Builder.create(this, "PythonSparkStreamingJob")
         .executable(JobExecutable.pythonStreaming(PythonSparkJobExecutableProps.builder()
                 .glueVersion(GlueVersion.V2_0)
                 .pythonVersion(PythonVersion.THREE)
                 .script(Code.fromAsset(join(__dirname, "job-script/hello_world.py")))
                 .build()))
         .description("an example Python Streaming job")
         .build();