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.
This field is required.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) -> Result<SparkSubmit, BuildError>
pub fn build(self) -> Result<SparkSubmit, BuildError>
Consumes the builder and constructs a SparkSubmit
.
This method will fail if any of the following fields are not set:
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 for SparkSubmitBuilder
impl PartialEq 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 Freeze for SparkSubmitBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.