Interface CfnJob.JobCommandProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnJob.JobCommandProperty.Jsii$Proxy
Enclosing class:
CfnJob

@Stability(Stable) public static interface CfnJob.JobCommandProperty extends software.amazon.jsii.JsiiSerializable
Specifies code executed when a job is run.

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.*;
 JobCommandProperty jobCommandProperty = JobCommandProperty.builder()
         .name("name")
         .pythonVersion("pythonVersion")
         .runtime("runtime")
         .scriptLocation("scriptLocation")
         .build();
 

See Also: