Struct aws_sdk_glue::types::builders::DeltaTargetBuilder
source · #[non_exhaustive]pub struct DeltaTargetBuilder { /* private fields */ }Expand description
A builder for DeltaTarget.
Implementations§
source§impl DeltaTargetBuilder
impl DeltaTargetBuilder
sourcepub fn delta_tables(self, input: impl Into<String>) -> Self
pub fn delta_tables(self, input: impl Into<String>) -> Self
Appends an item to delta_tables.
To override the contents of this collection use set_delta_tables.
A list of the Amazon S3 paths to the Delta tables.
sourcepub fn set_delta_tables(self, input: Option<Vec<String>>) -> Self
pub fn set_delta_tables(self, input: Option<Vec<String>>) -> Self
A list of the Amazon S3 paths to the Delta tables.
sourcepub fn get_delta_tables(&self) -> &Option<Vec<String>>
pub fn get_delta_tables(&self) -> &Option<Vec<String>>
A list of the Amazon S3 paths to the Delta tables.
sourcepub fn connection_name(self, input: impl Into<String>) -> Self
pub fn connection_name(self, input: impl Into<String>) -> Self
The name of the connection to use to connect to the Delta table target.
sourcepub fn set_connection_name(self, input: Option<String>) -> Self
pub fn set_connection_name(self, input: Option<String>) -> Self
The name of the connection to use to connect to the Delta table target.
sourcepub fn get_connection_name(&self) -> &Option<String>
pub fn get_connection_name(&self) -> &Option<String>
The name of the connection to use to connect to the Delta table target.
sourcepub fn write_manifest(self, input: bool) -> Self
pub fn write_manifest(self, input: bool) -> Self
Specifies whether to write the manifest files to the Delta table path.
sourcepub fn set_write_manifest(self, input: Option<bool>) -> Self
pub fn set_write_manifest(self, input: Option<bool>) -> Self
Specifies whether to write the manifest files to the Delta table path.
sourcepub fn get_write_manifest(&self) -> &Option<bool>
pub fn get_write_manifest(&self) -> &Option<bool>
Specifies whether to write the manifest files to the Delta table path.
sourcepub fn create_native_delta_table(self, input: bool) -> Self
pub fn create_native_delta_table(self, input: bool) -> Self
Specifies whether the crawler will create native tables, to allow integration with query engines that support querying of the Delta transaction log directly.
sourcepub fn set_create_native_delta_table(self, input: Option<bool>) -> Self
pub fn set_create_native_delta_table(self, input: Option<bool>) -> Self
Specifies whether the crawler will create native tables, to allow integration with query engines that support querying of the Delta transaction log directly.
sourcepub fn get_create_native_delta_table(&self) -> &Option<bool>
pub fn get_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.
sourcepub fn build(self) -> DeltaTarget
pub fn build(self) -> DeltaTarget
Consumes the builder and constructs a DeltaTarget.
Trait Implementations§
source§impl Clone for DeltaTargetBuilder
impl Clone for DeltaTargetBuilder
source§fn clone(&self) -> DeltaTargetBuilder
fn clone(&self) -> DeltaTargetBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeltaTargetBuilder
impl Debug for DeltaTargetBuilder
source§impl Default for DeltaTargetBuilder
impl Default for DeltaTargetBuilder
source§fn default() -> DeltaTargetBuilder
fn default() -> DeltaTargetBuilder
source§impl PartialEq<DeltaTargetBuilder> for DeltaTargetBuilder
impl PartialEq<DeltaTargetBuilder> for DeltaTargetBuilder
source§fn eq(&self, other: &DeltaTargetBuilder) -> bool
fn eq(&self, other: &DeltaTargetBuilder) -> bool
self and other values to be equal, and is used
by ==.