[][src]Struct rusoto_emr::HadoopStepConfig

pub struct HadoopStepConfig {
    pub args: Option<Vec<String>>,
    pub jar: Option<String>,
    pub main_class: Option<String>,
    pub properties: Option<HashMap<String, String>>,
}

A cluster 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>>

The list of command line arguments to pass to the JAR file's main function for execution.

jar: Option<String>

The path to the JAR file that runs 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<HashMap<String, String>>

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.

Trait Implementations

impl PartialEq<HadoopStepConfig> for HadoopStepConfig[src]

impl Default for HadoopStepConfig[src]

impl Clone for HadoopStepConfig[src]

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

Performs copy-assignment from source. Read more

impl Debug for HadoopStepConfig[src]

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

Auto Trait Implementations

impl Send for HadoopStepConfig

impl Sync for HadoopStepConfig

Blanket Implementations

impl<T> From for T[src]

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, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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

🔬 This is a nightly-only experimental API. (try_from)

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