Struct aws_sdk_glue::types::LineageConfiguration
source · #[non_exhaustive]pub struct LineageConfiguration {
pub crawler_lineage_settings: Option<CrawlerLineageSettings>,
}Expand description
Specifies data lineage configuration settings for the crawler.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.crawler_lineage_settings: Option<CrawlerLineageSettings>Specifies whether data lineage is enabled for the crawler. Valid values are:
-
ENABLE: enables data lineage for the crawler
-
DISABLE: disables data lineage for the crawler
Implementations§
source§impl LineageConfiguration
impl LineageConfiguration
sourcepub fn crawler_lineage_settings(&self) -> Option<&CrawlerLineageSettings>
pub fn crawler_lineage_settings(&self) -> Option<&CrawlerLineageSettings>
Specifies whether data lineage is enabled for the crawler. Valid values are:
-
ENABLE: enables data lineage for the crawler
-
DISABLE: disables data lineage for the crawler
source§impl LineageConfiguration
impl LineageConfiguration
sourcepub fn builder() -> LineageConfigurationBuilder
pub fn builder() -> LineageConfigurationBuilder
Creates a new builder-style object to manufacture LineageConfiguration.
Trait Implementations§
source§impl Clone for LineageConfiguration
impl Clone for LineageConfiguration
source§fn clone(&self) -> LineageConfiguration
fn clone(&self) -> LineageConfiguration
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 LineageConfiguration
impl Debug for LineageConfiguration
source§impl PartialEq for LineageConfiguration
impl PartialEq for LineageConfiguration
source§fn eq(&self, other: &LineageConfiguration) -> bool
fn eq(&self, other: &LineageConfiguration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for LineageConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for LineageConfiguration
impl Send for LineageConfiguration
impl Sync for LineageConfiguration
impl Unpin for LineageConfiguration
impl UnwindSafe for LineageConfiguration
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.