Struct aws_sdk_glue::types::JdbcConnectorTarget
source · #[non_exhaustive]pub struct JdbcConnectorTarget {
pub name: String,
pub inputs: Vec<String>,
pub connection_name: String,
pub connection_table: String,
pub connector_name: String,
pub connection_type: String,
pub additional_options: Option<HashMap<String, String>>,
pub output_schemas: Option<Vec<GlueSchema>>,
}Expand description
Specifies a data target that writes to Amazon S3 in Apache Parquet columnar storage.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringThe name of the data target.
inputs: Vec<String>The nodes that are inputs to the data target.
connection_name: StringThe name of the connection that is associated with the connector.
connection_table: StringThe name of the table in the data target.
connector_name: StringThe name of a connector that will be used.
connection_type: StringThe type of connection, such as marketplace.jdbc or custom.jdbc, designating a connection to a JDBC data target.
additional_options: Option<HashMap<String, String>>Additional connection options for the connector.
output_schemas: Option<Vec<GlueSchema>>Specifies the data schema for the JDBC target.
Implementations§
source§impl JdbcConnectorTarget
impl JdbcConnectorTarget
sourcepub fn connection_name(&self) -> &str
pub fn connection_name(&self) -> &str
The name of the connection that is associated with the connector.
sourcepub fn connection_table(&self) -> &str
pub fn connection_table(&self) -> &str
The name of the table in the data target.
sourcepub fn connector_name(&self) -> &str
pub fn connector_name(&self) -> &str
The name of a connector that will be used.
sourcepub fn connection_type(&self) -> &str
pub fn connection_type(&self) -> &str
The type of connection, such as marketplace.jdbc or custom.jdbc, designating a connection to a JDBC data target.
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) -> &[GlueSchema]
pub fn output_schemas(&self) -> &[GlueSchema]
Specifies the data schema for the JDBC target.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .output_schemas.is_none().
source§impl JdbcConnectorTarget
impl JdbcConnectorTarget
sourcepub fn builder() -> JdbcConnectorTargetBuilder
pub fn builder() -> JdbcConnectorTargetBuilder
Creates a new builder-style object to manufacture JdbcConnectorTarget.
Trait Implementations§
source§impl Clone for JdbcConnectorTarget
impl Clone for JdbcConnectorTarget
source§fn clone(&self) -> JdbcConnectorTarget
fn clone(&self) -> JdbcConnectorTarget
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for JdbcConnectorTarget
impl Debug for JdbcConnectorTarget
source§impl PartialEq for JdbcConnectorTarget
impl PartialEq for JdbcConnectorTarget
source§fn eq(&self, other: &JdbcConnectorTarget) -> bool
fn eq(&self, other: &JdbcConnectorTarget) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for JdbcConnectorTarget
Auto Trait Implementations§
impl Freeze for JdbcConnectorTarget
impl RefUnwindSafe for JdbcConnectorTarget
impl Send for JdbcConnectorTarget
impl Sync for JdbcConnectorTarget
impl Unpin for JdbcConnectorTarget
impl UnwindSafe for JdbcConnectorTarget
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more