[][src]Struct rusoto_emr::HadoopJarStepConfig

pub struct HadoopJarStepConfig {
    pub args: Option<Vec<String>>,
    pub jar: String,
    pub main_class: Option<String>,
    pub properties: Option<Vec<KeyValue>>,
}

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

args: Option<Vec<String>>

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

jar: String

A path to a JAR file run during the step.

main_class: Option<String>

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.

properties: Option<Vec<KeyValue>>

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 PartialEq<HadoopJarStepConfig> for HadoopJarStepConfig[src]

impl Default for HadoopJarStepConfig[src]

impl Clone for HadoopJarStepConfig[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for HadoopJarStepConfig[src]

impl<'de> Deserialize<'de> for HadoopJarStepConfig[src]

impl Serialize for HadoopJarStepConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self