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: 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.
database_name: 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.
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 ==
.