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

impl Debug for HadoopStepConfig[src]

impl Default for HadoopStepConfig[src]

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

impl PartialEq<HadoopStepConfig> for HadoopStepConfig[src]

impl StructuralPartialEq for HadoopStepConfig[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: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument 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.