Struct aws_sdk_emrcontainers::types::SparkSqlJobDriver
source · #[non_exhaustive]pub struct SparkSqlJobDriver {
pub entry_point: Option<String>,
pub spark_sql_parameters: Option<String>,
}Expand description
The job driver for job type.
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 SQL file to be executed.
spark_sql_parameters: Option<String>The Spark parameters to be included in the Spark SQL command.
Implementations§
source§impl SparkSqlJobDriver
impl SparkSqlJobDriver
sourcepub fn entry_point(&self) -> Option<&str>
pub fn entry_point(&self) -> Option<&str>
The SQL file to be executed.
sourcepub fn spark_sql_parameters(&self) -> Option<&str>
pub fn spark_sql_parameters(&self) -> Option<&str>
The Spark parameters to be included in the Spark SQL command.
source§impl SparkSqlJobDriver
impl SparkSqlJobDriver
sourcepub fn builder() -> SparkSqlJobDriverBuilder
pub fn builder() -> SparkSqlJobDriverBuilder
Creates a new builder-style object to manufacture SparkSqlJobDriver.
Trait Implementations§
source§impl Clone for SparkSqlJobDriver
impl Clone for SparkSqlJobDriver
source§fn clone(&self) -> SparkSqlJobDriver
fn clone(&self) -> SparkSqlJobDriver
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 SparkSqlJobDriver
impl Debug for SparkSqlJobDriver
source§impl PartialEq<SparkSqlJobDriver> for SparkSqlJobDriver
impl PartialEq<SparkSqlJobDriver> for SparkSqlJobDriver
source§fn eq(&self, other: &SparkSqlJobDriver) -> bool
fn eq(&self, other: &SparkSqlJobDriver) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SparkSqlJobDriver
Auto Trait Implementations§
impl RefUnwindSafe for SparkSqlJobDriver
impl Send for SparkSqlJobDriver
impl Sync for SparkSqlJobDriver
impl Unpin for SparkSqlJobDriver
impl UnwindSafe for SparkSqlJobDriver
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