Interface PythonSparkJobExecutableProps

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.784Z") @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.V4_0)
                 .pythonVersion(PythonVersion.THREE)
                 .script(Code.fromAsset(join(__dirname, "job-script", "hello_world.py")))
                 .build()))
         .description("an example Python Streaming job")
         .build();