Struct rusoto_emr::HadoopJarStepConfig [] [src]

pub struct HadoopJarStepConfig {
    pub args: Option<XmlStringList>,
    pub jar: XmlString,
    pub main_class: Option<XmlString>,
    pub properties: Option<KeyValueList>,
}

A job flow step consisting of a JAR file whose main function will be executed. The main function submits a job for Hadoop to execute and waits for the job to finish or fail.

Fields

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

A path to a JAR file run during the step.

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.

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.

Trait Implementations

impl Default for HadoopJarStepConfig
[src]

Returns the "default value" for a type. Read more

impl Debug for HadoopJarStepConfig
[src]

Formats the value using the given formatter.

impl Clone for HadoopJarStepConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more