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

impl Debug for HadoopJarStepConfig[src]

impl Default for HadoopJarStepConfig[src]

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

impl PartialEq<HadoopJarStepConfig> for HadoopJarStepConfig[src]

impl Serialize for HadoopJarStepConfig[src]

impl StructuralPartialEq for HadoopJarStepConfig[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.