Struct aws_sdk_glue::types::builders::S3DirectTargetBuilder
source · #[non_exhaustive]pub struct S3DirectTargetBuilder { /* private fields */ }Expand description
A builder for S3DirectTarget.
Implementations§
source§impl S3DirectTargetBuilder
impl S3DirectTargetBuilder
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
A single Amazon S3 path to write to.
This field is required.sourcepub fn compression(self, input: impl Into<String>) -> Self
pub fn compression(self, input: impl Into<String>) -> 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<String>) -> Self
pub fn set_compression(self, input: Option<String>) -> 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<String>
pub fn get_compression(&self) -> &Option<String>
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 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<S3DirectTarget, BuildError>
pub fn build(self) -> Result<S3DirectTarget, BuildError>
Consumes the builder and constructs a S3DirectTarget.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for S3DirectTargetBuilder
impl Clone for S3DirectTargetBuilder
source§fn clone(&self) -> S3DirectTargetBuilder
fn clone(&self) -> S3DirectTargetBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for S3DirectTargetBuilder
impl Debug for S3DirectTargetBuilder
source§impl Default for S3DirectTargetBuilder
impl Default for S3DirectTargetBuilder
source§fn default() -> S3DirectTargetBuilder
fn default() -> S3DirectTargetBuilder
source§impl PartialEq for S3DirectTargetBuilder
impl PartialEq for S3DirectTargetBuilder
source§fn eq(&self, other: &S3DirectTargetBuilder) -> bool
fn eq(&self, other: &S3DirectTargetBuilder) -> bool
self and other values to be equal, and is used
by ==.