StepHadoopJarStepConfig

data class StepHadoopJarStepConfig(val args: List<String>? = null, val jar: String, val mainClass: String? = null, val stepProperties: List<StepKeyValue>? = null)

Constructors

Link copied to clipboard
constructor(args: List<String>? = null, jar: String, mainClass: String? = null, stepProperties: List<StepKeyValue>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val args: List<String>? = null

A list of command line arguments passed to the JAR file's main function when executed.

Link copied to clipboard
val jar: String

A path to a JAR file run during the step.

Link copied to clipboard
val mainClass: String? = null

The name of the main class in the specified Java file. If not specified, the JAR file should specify a Main-Class in its manifest file.

Link copied to clipboard

A list of Java properties that are set when the step runs. You can use these properties to pass key value pairs to your main function.