Interface JobExecutableConfig

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

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-09-11T18:01:25.624Z") @Stability(Experimental) public interface JobExecutableConfig extends software.amazon.jsii.JsiiSerializable
(experimental) Result of binding a JobExecutable into a Job.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.glue.alpha.*;
 Code code;
 GlueVersion glueVersion;
 JobType jobType;
 Runtime runtime;
 JobExecutableConfig jobExecutableConfig = JobExecutableConfig.builder()
         .glueVersion(glueVersion)
         .language(JobLanguage.SCALA)
         .script(code)
         .type(jobType)
         // the properties below are optional
         .className("className")
         .extraFiles(List.of(code))
         .extraJars(List.of(code))
         .extraJarsFirst(false)
         .extraPythonFiles(List.of(code))
         .pythonVersion(PythonVersion.TWO)
         .runtime(runtime)
         .s3PythonModules(List.of(code))
         .build();