#[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
impl StructuralPartialEq for GlueConfigurationBuilder
Auto Trait Implementations§
impl Freeze for GlueConfigurationBuilder
impl RefUnwindSafe for GlueConfigurationBuilder
impl Send for GlueConfigurationBuilder
impl Sync for GlueConfigurationBuilder
impl Unpin for GlueConfigurationBuilder
impl UnwindSafe for GlueConfigurationBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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