Struct aws_sdk_glue::model::SparkConnectorTarget
source · #[non_exhaustive]pub struct SparkConnectorTarget { /* private fields */ }Expand description
Specifies a target that uses an Apache Spark connector.
Implementations§
source§impl SparkConnectorTarget
impl SparkConnectorTarget
sourcepub fn connection_name(&self) -> Option<&str>
pub fn connection_name(&self) -> Option<&str>
The name of a connection for an Apache Spark connector.
sourcepub fn connector_name(&self) -> Option<&str>
pub fn connector_name(&self) -> Option<&str>
The name of an Apache Spark connector.
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 the data schema for the custom spark target.
source§impl SparkConnectorTarget
impl SparkConnectorTarget
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SparkConnectorTarget.
Trait Implementations§
source§impl Clone for SparkConnectorTarget
impl Clone for SparkConnectorTarget
source§fn clone(&self) -> SparkConnectorTarget
fn clone(&self) -> SparkConnectorTarget
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 SparkConnectorTarget
impl Debug for SparkConnectorTarget
source§impl PartialEq<SparkConnectorTarget> for SparkConnectorTarget
impl PartialEq<SparkConnectorTarget> for SparkConnectorTarget
source§fn eq(&self, other: &SparkConnectorTarget) -> bool
fn eq(&self, other: &SparkConnectorTarget) -> bool
This method tests for
self and other values to be equal, and is used
by ==.