[−][src]Struct rusoto_emr::HadoopJarStepConfig
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][+]
impl Debug for HadoopJarStepConfig
[src][+]
impl Serialize for HadoopJarStepConfig
[src][+]
impl<'de> Deserialize<'de> for HadoopJarStepConfig
[src][+]
Auto Trait Implementations
impl Send for HadoopJarStepConfig
impl Sync for HadoopJarStepConfig
Blanket Implementations
impl<T> From for T
[src][−]
impl<T, U> Into for T where
U: From<T>,
[src][−]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][−]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src][−]
T: From<U>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src][−]
impl<T> Borrow for T where
T: ?Sized,
[src][−]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src][−]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src][−]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src][−]
U: TryFrom<T>,
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.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src][−]
impl<T> Any for T where
T: 'static + ?Sized,
[src][−]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src][−]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self