Struct aws_sdk_glue::model::delta_target::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for DeltaTarget.
Implementations§
source§impl Builder
impl Builder
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 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 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 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 build(self) -> DeltaTarget
pub fn build(self) -> DeltaTarget
Consumes the builder and constructs a DeltaTarget.