Struct aws_sdk_glue::types::builders::S3HudiDirectTargetBuilder
source · #[non_exhaustive]pub struct S3HudiDirectTargetBuilder { /* private fields */ }Expand description
A builder for S3HudiDirectTarget.
Implementations§
source§impl S3HudiDirectTargetBuilder
impl S3HudiDirectTargetBuilder
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 path(self, input: impl Into<String>) -> Self
pub fn path(self, input: impl Into<String>) -> Self
The Amazon S3 path of your Hudi data source to write to.
sourcepub fn set_path(self, input: Option<String>) -> Self
pub fn set_path(self, input: Option<String>) -> Self
The Amazon S3 path of your Hudi 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 Hudi data source to write to.
sourcepub fn compression(self, input: HudiTargetCompressionType) -> Self
pub fn compression(self, input: HudiTargetCompressionType) -> 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<HudiTargetCompressionType>) -> Self
pub fn set_compression(self, input: Option<HudiTargetCompressionType>) -> 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<HudiTargetCompressionType>
pub fn get_compression(&self) -> &Option<HudiTargetCompressionType>
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 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 format(self, input: TargetFormat) -> Self
pub fn format(self, input: TargetFormat) -> Self
Specifies the data output format for the target.
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) -> S3HudiDirectTarget
pub fn build(self) -> S3HudiDirectTarget
Consumes the builder and constructs a S3HudiDirectTarget.
Trait Implementations§
source§impl Clone for S3HudiDirectTargetBuilder
impl Clone for S3HudiDirectTargetBuilder
source§fn clone(&self) -> S3HudiDirectTargetBuilder
fn clone(&self) -> S3HudiDirectTargetBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for S3HudiDirectTargetBuilder
impl Debug for S3HudiDirectTargetBuilder
source§impl Default for S3HudiDirectTargetBuilder
impl Default for S3HudiDirectTargetBuilder
source§fn default() -> S3HudiDirectTargetBuilder
fn default() -> S3HudiDirectTargetBuilder
source§impl PartialEq<S3HudiDirectTargetBuilder> for S3HudiDirectTargetBuilder
impl PartialEq<S3HudiDirectTargetBuilder> for S3HudiDirectTargetBuilder
source§fn eq(&self, other: &S3HudiDirectTargetBuilder) -> bool
fn eq(&self, other: &S3HudiDirectTargetBuilder) -> bool
self and other values to be equal, and is used
by ==.