Struct aws_sdk_databrew::model::DatabaseInputDefinition
source · #[non_exhaustive]pub struct DatabaseInputDefinition { /* private fields */ }
Expand description
Connection information for dataset input files stored in a database.
Implementations§
source§impl DatabaseInputDefinition
impl DatabaseInputDefinition
sourcepub fn glue_connection_name(&self) -> Option<&str>
pub fn glue_connection_name(&self) -> Option<&str>
The Glue Connection that stores the connection information for the target database.
sourcepub fn database_table_name(&self) -> Option<&str>
pub fn database_table_name(&self) -> Option<&str>
The table within the target database.
sourcepub fn temp_directory(&self) -> Option<&S3Location>
pub fn temp_directory(&self) -> Option<&S3Location>
Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read input data, or write output from a job.
sourcepub fn query_string(&self) -> Option<&str>
pub fn query_string(&self) -> Option<&str>
Custom SQL to run against the provided Glue connection. This SQL will be used as the input for DataBrew projects and jobs.
source§impl DatabaseInputDefinition
impl DatabaseInputDefinition
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DatabaseInputDefinition
.
Trait Implementations§
source§impl Clone for DatabaseInputDefinition
impl Clone for DatabaseInputDefinition
source§fn clone(&self) -> DatabaseInputDefinition
fn clone(&self) -> DatabaseInputDefinition
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 DatabaseInputDefinition
impl Debug for DatabaseInputDefinition
source§impl PartialEq<DatabaseInputDefinition> for DatabaseInputDefinition
impl PartialEq<DatabaseInputDefinition> for DatabaseInputDefinition
source§fn eq(&self, other: &DatabaseInputDefinition) -> bool
fn eq(&self, other: &DatabaseInputDefinition) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.