[−][src]Struct rusoto_emr::HadoopStepConfig
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]
fn eq(&self, other: &HadoopStepConfig) -> bool
[src]
fn ne(&self, other: &HadoopStepConfig) -> bool
[src]
impl Default for HadoopStepConfig
[src]
fn default() -> HadoopStepConfig
[src]
impl Clone for HadoopStepConfig
[src]
fn clone(&self) -> 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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
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]
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 = !
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
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