Struct aws_sdk_glue::types::builders::S3DeltaDirectTargetBuilder
source · #[non_exhaustive]pub struct S3DeltaDirectTargetBuilder { /* private fields */ }Expand description
A builder for S3DeltaDirectTarget.
Implementations§
source§impl S3DeltaDirectTargetBuilder
impl S3DeltaDirectTargetBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the data target.
This field is required.sourcepub fn inputs(self, input: impl Into<String>) -> Self
pub fn inputs(self, input: impl Into<String>) -> Self
Appends an item to inputs.
To override the contents of this collection use set_inputs.
The nodes that are inputs to the data target.
sourcepub fn set_inputs(self, input: Option<Vec<String>>) -> Self
pub fn set_inputs(self, input: Option<Vec<String>>) -> Self
The nodes that are inputs to the data target.
sourcepub fn get_inputs(&self) -> &Option<Vec<String>>
pub fn get_inputs(&self) -> &Option<Vec<String>>
The nodes that are inputs to the data target.
sourcepub fn partition_keys(self, input: Vec<String>) -> Self
pub fn partition_keys(self, input: Vec<String>) -> Self
Appends an item to partition_keys.
To override the contents of this collection use set_partition_keys.
Specifies native partitioning using a sequence of keys.
sourcepub fn set_partition_keys(self, input: Option<Vec<Vec<String>>>) -> Self
pub fn set_partition_keys(self, input: Option<Vec<Vec<String>>>) -> Self
Specifies native partitioning using a sequence of keys.
sourcepub fn get_partition_keys(&self) -> &Option<Vec<Vec<String>>>
pub fn get_partition_keys(&self) -> &Option<Vec<Vec<String>>>
Specifies native partitioning using a sequence of keys.
sourcepub fn path(self, input: impl Into<String>) -> Self
pub fn path(self, input: impl Into<String>) -> Self
The Amazon S3 path of your Delta Lake data source to write to.
This field is required.sourcepub fn set_path(self, input: Option<String>) -> Self
pub fn set_path(self, input: Option<String>) -> Self
The Amazon S3 path of your Delta Lake data source to write to.
sourcepub fn get_path(&self) -> &Option<String>
pub fn get_path(&self) -> &Option<String>
The Amazon S3 path of your Delta Lake data source to write to.
sourcepub fn compression(self, input: DeltaTargetCompressionType) -> Self
pub fn compression(self, input: DeltaTargetCompressionType) -> Self
Specifies how the data is compressed. This is generally not necessary if the data has a standard file extension. Possible values are "gzip" and "bzip").
sourcepub fn set_compression(self, input: Option<DeltaTargetCompressionType>) -> Self
pub fn set_compression(self, input: Option<DeltaTargetCompressionType>) -> Self
Specifies how the data is compressed. This is generally not necessary if the data has a standard file extension. Possible values are "gzip" and "bzip").
sourcepub fn get_compression(&self) -> &Option<DeltaTargetCompressionType>
pub fn get_compression(&self) -> &Option<DeltaTargetCompressionType>
Specifies how the data is compressed. This is generally not necessary if the data has a standard file extension. Possible values are "gzip" and "bzip").
sourcepub fn format(self, input: TargetFormat) -> Self
pub fn format(self, input: TargetFormat) -> Self
Specifies the data output format for the target.
This field is required.sourcepub fn set_format(self, input: Option<TargetFormat>) -> Self
pub fn set_format(self, input: Option<TargetFormat>) -> Self
Specifies the data output format for the target.
sourcepub fn get_format(&self) -> &Option<TargetFormat>
pub fn get_format(&self) -> &Option<TargetFormat>
Specifies the data output format for the target.
sourcepub fn additional_options(
self,
k: impl Into<String>,
v: impl Into<String>
) -> Self
pub fn additional_options( self, k: impl Into<String>, v: impl Into<String> ) -> Self
Adds a key-value pair to additional_options.
To override the contents of this collection use set_additional_options.
Specifies additional connection options for the connector.
sourcepub fn set_additional_options(
self,
input: Option<HashMap<String, String>>
) -> Self
pub fn set_additional_options( self, input: Option<HashMap<String, String>> ) -> Self
Specifies additional connection options for the connector.
sourcepub fn get_additional_options(&self) -> &Option<HashMap<String, String>>
pub fn get_additional_options(&self) -> &Option<HashMap<String, String>>
Specifies additional connection options for the connector.
sourcepub fn schema_change_policy(self, input: DirectSchemaChangePolicy) -> Self
pub fn schema_change_policy(self, input: DirectSchemaChangePolicy) -> Self
A policy that specifies update behavior for the crawler.
sourcepub fn set_schema_change_policy(
self,
input: Option<DirectSchemaChangePolicy>
) -> Self
pub fn set_schema_change_policy( self, input: Option<DirectSchemaChangePolicy> ) -> Self
A policy that specifies update behavior for the crawler.
sourcepub fn get_schema_change_policy(&self) -> &Option<DirectSchemaChangePolicy>
pub fn get_schema_change_policy(&self) -> &Option<DirectSchemaChangePolicy>
A policy that specifies update behavior for the crawler.
sourcepub fn build(self) -> Result<S3DeltaDirectTarget, BuildError>
pub fn build(self) -> Result<S3DeltaDirectTarget, BuildError>
Consumes the builder and constructs a S3DeltaDirectTarget.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for S3DeltaDirectTargetBuilder
impl Clone for S3DeltaDirectTargetBuilder
source§fn clone(&self) -> S3DeltaDirectTargetBuilder
fn clone(&self) -> S3DeltaDirectTargetBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for S3DeltaDirectTargetBuilder
impl Debug for S3DeltaDirectTargetBuilder
source§impl Default for S3DeltaDirectTargetBuilder
impl Default for S3DeltaDirectTargetBuilder
source§fn default() -> S3DeltaDirectTargetBuilder
fn default() -> S3DeltaDirectTargetBuilder
source§impl PartialEq for S3DeltaDirectTargetBuilder
impl PartialEq for S3DeltaDirectTargetBuilder
source§fn eq(&self, other: &S3DeltaDirectTargetBuilder) -> bool
fn eq(&self, other: &S3DeltaDirectTargetBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for S3DeltaDirectTargetBuilder
Auto Trait Implementations§
impl Freeze for S3DeltaDirectTargetBuilder
impl RefUnwindSafe for S3DeltaDirectTargetBuilder
impl Send for S3DeltaDirectTargetBuilder
impl Sync for S3DeltaDirectTargetBuilder
impl Unpin for S3DeltaDirectTargetBuilder
impl UnwindSafe for S3DeltaDirectTargetBuilder
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more