Struct aws_sdk_glue::types::builders::JdbcTargetBuilder
source · #[non_exhaustive]pub struct JdbcTargetBuilder { /* private fields */ }Expand description
A builder for JdbcTarget.
Implementations§
source§impl JdbcTargetBuilder
impl JdbcTargetBuilder
sourcepub fn connection_name(self, input: impl Into<String>) -> Self
pub fn connection_name(self, input: impl Into<String>) -> Self
The name of the connection to use to connect to the JDBC target.
sourcepub fn set_connection_name(self, input: Option<String>) -> Self
pub fn set_connection_name(self, input: Option<String>) -> Self
The name of the connection to use to connect to the JDBC target.
sourcepub fn get_connection_name(&self) -> &Option<String>
pub fn get_connection_name(&self) -> &Option<String>
The name of the connection to use to connect to the JDBC target.
sourcepub fn exclusions(self, input: impl Into<String>) -> Self
pub fn exclusions(self, input: impl Into<String>) -> Self
Appends an item to exclusions.
To override the contents of this collection use set_exclusions.
A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.
sourcepub fn set_exclusions(self, input: Option<Vec<String>>) -> Self
pub fn set_exclusions(self, input: Option<Vec<String>>) -> Self
A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.
sourcepub fn get_exclusions(&self) -> &Option<Vec<String>>
pub fn get_exclusions(&self) -> &Option<Vec<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, input: JdbcMetadataEntry) -> Self
pub fn enable_additional_metadata(self, input: JdbcMetadataEntry) -> Self
Appends an item to enable_additional_metadata.
To override the contents of this collection use set_enable_additional_metadata.
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.
sourcepub fn set_enable_additional_metadata(
self,
input: Option<Vec<JdbcMetadataEntry>>
) -> Self
pub fn set_enable_additional_metadata( self, input: Option<Vec<JdbcMetadataEntry>> ) -> Self
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.
sourcepub fn get_enable_additional_metadata(&self) -> &Option<Vec<JdbcMetadataEntry>>
pub fn get_enable_additional_metadata(&self) -> &Option<Vec<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.
sourcepub fn build(self) -> JdbcTarget
pub fn build(self) -> JdbcTarget
Consumes the builder and constructs a JdbcTarget.
Trait Implementations§
source§impl Clone for JdbcTargetBuilder
impl Clone for JdbcTargetBuilder
source§fn clone(&self) -> JdbcTargetBuilder
fn clone(&self) -> JdbcTargetBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for JdbcTargetBuilder
impl Debug for JdbcTargetBuilder
source§impl Default for JdbcTargetBuilder
impl Default for JdbcTargetBuilder
source§fn default() -> JdbcTargetBuilder
fn default() -> JdbcTargetBuilder
source§impl PartialEq<JdbcTargetBuilder> for JdbcTargetBuilder
impl PartialEq<JdbcTargetBuilder> for JdbcTargetBuilder
source§fn eq(&self, other: &JdbcTargetBuilder) -> bool
fn eq(&self, other: &JdbcTargetBuilder) -> bool
self and other values to be equal, and is used
by ==.