Struct aws_sdk_appflow::types::builders::S3SourcePropertiesBuilder
source · #[non_exhaustive]pub struct S3SourcePropertiesBuilder { /* private fields */ }
Expand description
A builder for S3SourceProperties
.
Implementations§
source§impl S3SourcePropertiesBuilder
impl S3SourcePropertiesBuilder
sourcepub fn bucket_name(self, input: impl Into<String>) -> Self
pub fn bucket_name(self, input: impl Into<String>) -> Self
The Amazon S3 bucket name where the source files are stored.
This field is required.sourcepub fn set_bucket_name(self, input: Option<String>) -> Self
pub fn set_bucket_name(self, input: Option<String>) -> Self
The Amazon S3 bucket name where the source files are stored.
sourcepub fn get_bucket_name(&self) -> &Option<String>
pub fn get_bucket_name(&self) -> &Option<String>
The Amazon S3 bucket name where the source files are stored.
sourcepub fn bucket_prefix(self, input: impl Into<String>) -> Self
pub fn bucket_prefix(self, input: impl Into<String>) -> Self
The object key for the Amazon S3 bucket in which the source files are stored.
sourcepub fn set_bucket_prefix(self, input: Option<String>) -> Self
pub fn set_bucket_prefix(self, input: Option<String>) -> Self
The object key for the Amazon S3 bucket in which the source files are stored.
sourcepub fn get_bucket_prefix(&self) -> &Option<String>
pub fn get_bucket_prefix(&self) -> &Option<String>
The object key for the Amazon S3 bucket in which the source files are stored.
sourcepub fn s3_input_format_config(self, input: S3InputFormatConfig) -> Self
pub fn s3_input_format_config(self, input: S3InputFormatConfig) -> Self
When you use Amazon S3 as the source, the configuration format that you provide the flow input data.
sourcepub fn set_s3_input_format_config(
self,
input: Option<S3InputFormatConfig>
) -> Self
pub fn set_s3_input_format_config( self, input: Option<S3InputFormatConfig> ) -> Self
When you use Amazon S3 as the source, the configuration format that you provide the flow input data.
sourcepub fn get_s3_input_format_config(&self) -> &Option<S3InputFormatConfig>
pub fn get_s3_input_format_config(&self) -> &Option<S3InputFormatConfig>
When you use Amazon S3 as the source, the configuration format that you provide the flow input data.
sourcepub fn build(self) -> Result<S3SourceProperties, BuildError>
pub fn build(self) -> Result<S3SourceProperties, BuildError>
Consumes the builder and constructs a S3SourceProperties
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for S3SourcePropertiesBuilder
impl Clone for S3SourcePropertiesBuilder
source§fn clone(&self) -> S3SourcePropertiesBuilder
fn clone(&self) -> S3SourcePropertiesBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for S3SourcePropertiesBuilder
impl Debug for S3SourcePropertiesBuilder
source§impl Default for S3SourcePropertiesBuilder
impl Default for S3SourcePropertiesBuilder
source§fn default() -> S3SourcePropertiesBuilder
fn default() -> S3SourcePropertiesBuilder
source§impl PartialEq for S3SourcePropertiesBuilder
impl PartialEq for S3SourcePropertiesBuilder
source§fn eq(&self, other: &S3SourcePropertiesBuilder) -> bool
fn eq(&self, other: &S3SourcePropertiesBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.