Interface JobExecutableConfig

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:42.580Z") @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.*;
 Code code;
 GlueVersion glueVersion;
 JobType jobType;
 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)
         .build();