ClusterStepHadoopJarStep

data class ClusterStepHadoopJarStep(val args: List<String>? = null, val jar: String, val mainClass: String? = null, val properties: Map<String, String>? = null)

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

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

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

Link copied to clipboard
val jar: String

Path to a JAR file run during the step.

Link copied to clipboard
val mainClass: String? = null

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
val properties: Map<String, String>? = null

Key-Value map of Java properties that are set when the step runs. You can use these properties to pass key value pairs to your main function.