Interface PythonRayExecutableProps

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.783Z") @Stability(Experimental) public interface PythonRayExecutableProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props for creating a Python Ray job executable.

Example:

 Job.Builder.create(this, "RayJob")
         .executable(JobExecutable.pythonRay(PythonRayExecutableProps.builder()
                 .glueVersion(GlueVersion.V4_0)
                 .pythonVersion(PythonVersion.THREE_NINE)
                 .runtime(Runtime.RAY_TWO_FOUR)
                 .script(Code.fromAsset(join(__dirname, "job-script", "hello_world.py")))
                 .build()))
         .workerType(WorkerType.Z_2X)
         .workerCount(2)
         .description("an example Ray job")
         .build();