public static interface HadoopStepConfig.Builder extends SdkPojo, CopyableBuilder<HadoopStepConfig.Builder,HadoopStepConfig>
Modifier and Type | Method and Description |
---|---|
HadoopStepConfig.Builder |
args(Collection<String> args)
The list of command line arguments to pass to the JAR file's main function for execution.
|
HadoopStepConfig.Builder |
args(String... args)
The list of command line arguments to pass to the JAR file's main function for execution.
|
HadoopStepConfig.Builder |
jar(String jar)
The path to the JAR file that runs during the step.
|
HadoopStepConfig.Builder |
mainClass(String mainClass)
The name of the main class in the specified Java file.
|
HadoopStepConfig.Builder |
properties(Map<String,String> properties)
The list of Java properties that are set when the step runs.
|
copy
applyMutation, build
HadoopStepConfig.Builder jar(String jar)
The path to the JAR file that runs during the step.
jar
- The path to the JAR file that runs during the step.HadoopStepConfig.Builder properties(Map<String,String> properties)
The 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.
properties
- The 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.HadoopStepConfig.Builder mainClass(String mainClass)
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.
mainClass
- 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.HadoopStepConfig.Builder args(Collection<String> args)
The list of command line arguments to pass to the JAR file's main function for execution.
args
- The list of command line arguments to pass to the JAR file's main function for execution.HadoopStepConfig.Builder args(String... args)
The list of command line arguments to pass to the JAR file's main function for execution.
args
- The list of command line arguments to pass to the JAR file's main function for execution.Copyright © 2019. All rights reserved.