Struct aws_sdk_emrserverless::types::builders::SparkSubmitBuilder
source · #[non_exhaustive]pub struct SparkSubmitBuilder { /* private fields */ }
Expand description
A builder for SparkSubmit
.
Implementations§
source§impl SparkSubmitBuilder
impl SparkSubmitBuilder
sourcepub fn entry_point(self, input: impl Into<String>) -> Self
pub fn entry_point(self, input: impl Into<String>) -> Self
The entry point for the Spark submit job run.
sourcepub fn set_entry_point(self, input: Option<String>) -> Self
pub fn set_entry_point(self, input: Option<String>) -> Self
The entry point for the Spark submit job run.
sourcepub fn get_entry_point(&self) -> &Option<String>
pub fn get_entry_point(&self) -> &Option<String>
The entry point for the Spark submit job run.
sourcepub fn entry_point_arguments(self, input: impl Into<String>) -> Self
pub fn entry_point_arguments(self, input: impl Into<String>) -> Self
Appends an item to entry_point_arguments
.
To override the contents of this collection use set_entry_point_arguments
.
The arguments for the Spark submit job run.
sourcepub fn set_entry_point_arguments(self, input: Option<Vec<String>>) -> Self
pub fn set_entry_point_arguments(self, input: Option<Vec<String>>) -> Self
The arguments for the Spark submit job run.
sourcepub fn get_entry_point_arguments(&self) -> &Option<Vec<String>>
pub fn get_entry_point_arguments(&self) -> &Option<Vec<String>>
The arguments for the Spark submit job run.
sourcepub fn spark_submit_parameters(self, input: impl Into<String>) -> Self
pub fn spark_submit_parameters(self, input: impl Into<String>) -> Self
The parameters for the Spark submit job run.
sourcepub fn set_spark_submit_parameters(self, input: Option<String>) -> Self
pub fn set_spark_submit_parameters(self, input: Option<String>) -> Self
The parameters for the Spark submit job run.
sourcepub fn get_spark_submit_parameters(&self) -> &Option<String>
pub fn get_spark_submit_parameters(&self) -> &Option<String>
The parameters for the Spark submit job run.
sourcepub fn build(self) -> SparkSubmit
pub fn build(self) -> SparkSubmit
Consumes the builder and constructs a SparkSubmit
.
Trait Implementations§
source§impl Clone for SparkSubmitBuilder
impl Clone for SparkSubmitBuilder
source§fn clone(&self) -> SparkSubmitBuilder
fn clone(&self) -> SparkSubmitBuilder
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 SparkSubmitBuilder
impl Debug for SparkSubmitBuilder
source§impl Default for SparkSubmitBuilder
impl Default for SparkSubmitBuilder
source§fn default() -> SparkSubmitBuilder
fn default() -> SparkSubmitBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<SparkSubmitBuilder> for SparkSubmitBuilder
impl PartialEq<SparkSubmitBuilder> for SparkSubmitBuilder
source§fn eq(&self, other: &SparkSubmitBuilder) -> bool
fn eq(&self, other: &SparkSubmitBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SparkSubmitBuilder
Auto Trait Implementations§
impl RefUnwindSafe for SparkSubmitBuilder
impl Send for SparkSubmitBuilder
impl Sync for SparkSubmitBuilder
impl Unpin for SparkSubmitBuilder
impl UnwindSafe for SparkSubmitBuilder
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