#[non_exhaustive]pub struct GlueConfigurationBuilder { /* private fields */ }
Expand description
A builder for GlueConfiguration
.
Implementations§
source§impl GlueConfigurationBuilder
impl GlueConfigurationBuilder
sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
The name of the table in your Glue Data Catalog that is used to perform the ETL operations. An Glue Data Catalog table contains partitioned data and descriptions of data sources and targets.
This field is required.sourcepub fn set_table_name(self, input: Option<String>) -> Self
pub fn set_table_name(self, input: Option<String>) -> Self
The name of the table in your Glue Data Catalog that is used to perform the ETL operations. An Glue Data Catalog table contains partitioned data and descriptions of data sources and targets.
sourcepub fn get_table_name(&self) -> &Option<String>
pub fn get_table_name(&self) -> &Option<String>
The name of the table in your Glue Data Catalog that is used to perform the ETL operations. An Glue Data Catalog table contains partitioned data and descriptions of data sources and targets.
sourcepub fn database_name(self, input: impl Into<String>) -> Self
pub fn database_name(self, input: impl Into<String>) -> Self
The name of the database in your Glue Data Catalog in which the table is located. An Glue Data Catalog database contains metadata tables.
This field is required.sourcepub fn set_database_name(self, input: Option<String>) -> Self
pub fn set_database_name(self, input: Option<String>) -> Self
The name of the database in your Glue Data Catalog in which the table is located. An Glue Data Catalog database contains metadata tables.
sourcepub fn get_database_name(&self) -> &Option<String>
pub fn get_database_name(&self) -> &Option<String>
The name of the database in your Glue Data Catalog in which the table is located. An Glue Data Catalog database contains metadata tables.
sourcepub fn build(self) -> Result<GlueConfiguration, BuildError>
pub fn build(self) -> Result<GlueConfiguration, BuildError>
Consumes the builder and constructs a GlueConfiguration
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for GlueConfigurationBuilder
impl Clone for GlueConfigurationBuilder
source§fn clone(&self) -> GlueConfigurationBuilder
fn clone(&self) -> GlueConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GlueConfigurationBuilder
impl Debug for GlueConfigurationBuilder
source§impl Default for GlueConfigurationBuilder
impl Default for GlueConfigurationBuilder
source§fn default() -> GlueConfigurationBuilder
fn default() -> GlueConfigurationBuilder
source§impl PartialEq for GlueConfigurationBuilder
impl PartialEq for GlueConfigurationBuilder
source§fn eq(&self, other: &GlueConfigurationBuilder) -> bool
fn eq(&self, other: &GlueConfigurationBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.