Struct aws_sdk_emrcontainers::types::SparkSubmitJobDriver
source · #[non_exhaustive]pub struct SparkSubmitJobDriver {
pub entry_point: Option<String>,
pub entry_point_arguments: Option<Vec<String>>,
pub spark_submit_parameters: Option<String>,
}Expand description
The information about job driver for Spark submit.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.entry_point: Option<String>The entry point of job application.
entry_point_arguments: Option<Vec<String>>The arguments for job application.
spark_submit_parameters: Option<String>The Spark submit parameters that are used for job runs.
Implementations§
source§impl SparkSubmitJobDriver
impl SparkSubmitJobDriver
sourcepub fn entry_point(&self) -> Option<&str>
pub fn entry_point(&self) -> Option<&str>
The entry point of job application.
sourcepub fn entry_point_arguments(&self) -> Option<&[String]>
pub fn entry_point_arguments(&self) -> Option<&[String]>
The arguments for job application.
sourcepub fn spark_submit_parameters(&self) -> Option<&str>
pub fn spark_submit_parameters(&self) -> Option<&str>
The Spark submit parameters that are used for job runs.
source§impl SparkSubmitJobDriver
impl SparkSubmitJobDriver
sourcepub fn builder() -> SparkSubmitJobDriverBuilder
pub fn builder() -> SparkSubmitJobDriverBuilder
Creates a new builder-style object to manufacture SparkSubmitJobDriver.
Trait Implementations§
source§impl Clone for SparkSubmitJobDriver
impl Clone for SparkSubmitJobDriver
source§fn clone(&self) -> SparkSubmitJobDriver
fn clone(&self) -> SparkSubmitJobDriver
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for SparkSubmitJobDriver
impl Debug for SparkSubmitJobDriver
source§impl PartialEq<SparkSubmitJobDriver> for SparkSubmitJobDriver
impl PartialEq<SparkSubmitJobDriver> for SparkSubmitJobDriver
source§fn eq(&self, other: &SparkSubmitJobDriver) -> bool
fn eq(&self, other: &SparkSubmitJobDriver) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SparkSubmitJobDriver
Auto Trait Implementations§
impl RefUnwindSafe for SparkSubmitJobDriver
impl Send for SparkSubmitJobDriver
impl Sync for SparkSubmitJobDriver
impl Unpin for SparkSubmitJobDriver
impl UnwindSafe for SparkSubmitJobDriver
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more