Struct aws_sdk_glue::model::DeltaTarget
source · #[non_exhaustive]pub struct DeltaTarget { /* private fields */ }Expand description
Specifies a Delta data store to crawl one or more Delta tables.
Implementations§
source§impl DeltaTarget
impl DeltaTarget
sourcepub fn delta_tables(&self) -> Option<&[String]>
pub fn delta_tables(&self) -> Option<&[String]>
A list of the Amazon S3 paths to the Delta tables.
sourcepub fn connection_name(&self) -> Option<&str>
pub fn connection_name(&self) -> Option<&str>
The name of the connection to use to connect to the Delta table target.
sourcepub fn write_manifest(&self) -> Option<bool>
pub fn write_manifest(&self) -> Option<bool>
Specifies whether to write the manifest files to the Delta table path.
sourcepub fn create_native_delta_table(&self) -> Option<bool>
pub fn create_native_delta_table(&self) -> Option<bool>
Specifies whether the crawler will create native tables, to allow integration with query engines that support querying of the Delta transaction log directly.
source§impl DeltaTarget
impl DeltaTarget
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DeltaTarget.
Trait Implementations§
source§impl Clone for DeltaTarget
impl Clone for DeltaTarget
source§fn clone(&self) -> DeltaTarget
fn clone(&self) -> DeltaTarget
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 DeltaTarget
impl Debug for DeltaTarget
source§impl PartialEq<DeltaTarget> for DeltaTarget
impl PartialEq<DeltaTarget> for DeltaTarget
source§fn eq(&self, other: &DeltaTarget) -> bool
fn eq(&self, other: &DeltaTarget) -> bool
This method tests for
self and other values to be equal, and is used
by ==.