Struct aws_sdk_glue::model::SparkConnectorSource
source · #[non_exhaustive]pub struct SparkConnectorSource { /* private fields */ }Expand description
Specifies a connector to an Apache Spark data source.
Implementations§
source§impl SparkConnectorSource
impl SparkConnectorSource
sourcepub fn connection_name(&self) -> Option<&str>
pub fn connection_name(&self) -> Option<&str>
The name of the connection that is associated with the connector.
sourcepub fn connector_name(&self) -> Option<&str>
pub fn connector_name(&self) -> Option<&str>
The name of a connector that assists with accessing the data store in Glue Studio.
sourcepub fn connection_type(&self) -> Option<&str>
pub fn connection_type(&self) -> Option<&str>
The type of connection, such as marketplace.spark or custom.spark, designating a connection to an Apache Spark data store.
sourcepub fn additional_options(&self) -> Option<&HashMap<String, String>>
pub fn additional_options(&self) -> Option<&HashMap<String, String>>
Additional connection options for the connector.
sourcepub fn output_schemas(&self) -> Option<&[GlueSchema]>
pub fn output_schemas(&self) -> Option<&[GlueSchema]>
Specifies data schema for the custom spark source.
source§impl SparkConnectorSource
impl SparkConnectorSource
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SparkConnectorSource.
Trait Implementations§
source§impl Clone for SparkConnectorSource
impl Clone for SparkConnectorSource
source§fn clone(&self) -> SparkConnectorSource
fn clone(&self) -> SparkConnectorSource
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 SparkConnectorSource
impl Debug for SparkConnectorSource
source§impl PartialEq<SparkConnectorSource> for SparkConnectorSource
impl PartialEq<SparkConnectorSource> for SparkConnectorSource
source§fn eq(&self, other: &SparkConnectorSource) -> bool
fn eq(&self, other: &SparkConnectorSource) -> bool
This method tests for
self and other values to be equal, and is used
by ==.