Struct aws_sdk_iotanalytics::types::GlueConfiguration
source · #[non_exhaustive]pub struct GlueConfiguration {
pub table_name: String,
pub database_name: String,
}Expand description
Configuration information for coordination with Glue, a fully managed extract, transform and load (ETL) service.
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.table_name: StringThe 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.
database_name: StringThe name of the database in your Glue Data Catalog in which the table is located. An Glue Data Catalog database contains metadata tables.
Implementations§
source§impl GlueConfiguration
impl GlueConfiguration
sourcepub fn table_name(&self) -> &str
pub fn table_name(&self) -> &str
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) -> &str
pub fn database_name(&self) -> &str
The name of the database in your Glue Data Catalog in which the table is located. An Glue Data Catalog database contains metadata tables.
source§impl GlueConfiguration
impl GlueConfiguration
sourcepub fn builder() -> GlueConfigurationBuilder
pub fn builder() -> GlueConfigurationBuilder
Creates a new builder-style object to manufacture GlueConfiguration.
Trait Implementations§
source§impl Clone for GlueConfiguration
impl Clone for GlueConfiguration
source§fn clone(&self) -> GlueConfiguration
fn clone(&self) -> GlueConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GlueConfiguration
impl Debug for GlueConfiguration
source§impl PartialEq for GlueConfiguration
impl PartialEq for GlueConfiguration
source§fn eq(&self, other: &GlueConfiguration) -> bool
fn eq(&self, other: &GlueConfiguration) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GlueConfiguration
Auto Trait Implementations§
impl Freeze for GlueConfiguration
impl RefUnwindSafe for GlueConfiguration
impl Send for GlueConfiguration
impl Sync for GlueConfiguration
impl Unpin for GlueConfiguration
impl UnwindSafe for GlueConfiguration
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