Struct aws_sdk_glue::model::JdbcConnectorSource
source · #[non_exhaustive]pub struct JdbcConnectorSource { /* private fields */ }Expand description
Specifies a connector to a JDBC data source.
Implementations§
source§impl JdbcConnectorSource
impl JdbcConnectorSource
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.jdbc or custom.jdbc, designating a connection to a JDBC data store.
sourcepub fn additional_options(&self) -> Option<&JdbcConnectorOptions>
pub fn additional_options(&self) -> Option<&JdbcConnectorOptions>
Additional connection options for the connector.
sourcepub fn connection_table(&self) -> Option<&str>
pub fn connection_table(&self) -> Option<&str>
The name of the table in the data source.
sourcepub fn query(&self) -> Option<&str>
pub fn query(&self) -> Option<&str>
The table or SQL query to get the data from. You can specify either ConnectionTable or query, but not both.
sourcepub fn output_schemas(&self) -> Option<&[GlueSchema]>
pub fn output_schemas(&self) -> Option<&[GlueSchema]>
Specifies the data schema for the custom JDBC source.
source§impl JdbcConnectorSource
impl JdbcConnectorSource
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture JdbcConnectorSource.
Trait Implementations§
source§impl Clone for JdbcConnectorSource
impl Clone for JdbcConnectorSource
source§fn clone(&self) -> JdbcConnectorSource
fn clone(&self) -> JdbcConnectorSource
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 JdbcConnectorSource
impl Debug for JdbcConnectorSource
source§impl PartialEq<JdbcConnectorSource> for JdbcConnectorSource
impl PartialEq<JdbcConnectorSource> for JdbcConnectorSource
source§fn eq(&self, other: &JdbcConnectorSource) -> bool
fn eq(&self, other: &JdbcConnectorSource) -> bool
This method tests for
self and other values to be equal, and is used
by ==.