Struct aws_sdk_glue::model::JdbcTarget
source · #[non_exhaustive]pub struct JdbcTarget { /* private fields */ }Expand description
Specifies a JDBC data store to crawl.
Implementations§
source§impl JdbcTarget
impl JdbcTarget
sourcepub fn connection_name(&self) -> Option<&str>
pub fn connection_name(&self) -> Option<&str>
The name of the connection to use to connect to the JDBC target.
sourcepub fn exclusions(&self) -> Option<&[String]>
pub fn exclusions(&self) -> Option<&[String]>
A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.
sourcepub fn enable_additional_metadata(&self) -> Option<&[JdbcMetadataEntry]>
pub fn enable_additional_metadata(&self) -> Option<&[JdbcMetadataEntry]>
Specify a value of RAWTYPES or COMMENTS to enable additional metadata in table responses. RAWTYPES provides the native-level datatype. COMMENTS provides comments associated with a column or table in the database.
If you do not need additional metadata, keep the field empty.
source§impl JdbcTarget
impl JdbcTarget
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture JdbcTarget.
Trait Implementations§
source§impl Clone for JdbcTarget
impl Clone for JdbcTarget
source§fn clone(&self) -> JdbcTarget
fn clone(&self) -> JdbcTarget
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 JdbcTarget
impl Debug for JdbcTarget
source§impl PartialEq<JdbcTarget> for JdbcTarget
impl PartialEq<JdbcTarget> for JdbcTarget
source§fn eq(&self, other: &JdbcTarget) -> bool
fn eq(&self, other: &JdbcTarget) -> bool
This method tests for
self and other values to be equal, and is used
by ==.