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.
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 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 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 build(self) -> S3SourceProperties
pub fn build(self) -> S3SourceProperties
Consumes the builder and constructs a S3SourceProperties
.
Trait Implementations§
source§impl Clone for S3SourcePropertiesBuilder
impl Clone for S3SourcePropertiesBuilder
source§fn clone(&self) -> S3SourcePropertiesBuilder
fn clone(&self) -> S3SourcePropertiesBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
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
Returns the “default value” for a type. Read more
source§impl PartialEq<S3SourcePropertiesBuilder> for S3SourcePropertiesBuilder
impl PartialEq<S3SourcePropertiesBuilder> for S3SourcePropertiesBuilder
source§fn eq(&self, other: &S3SourcePropertiesBuilder) -> bool
fn eq(&self, other: &S3SourcePropertiesBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for S3SourcePropertiesBuilder
Auto Trait Implementations§
impl RefUnwindSafe for S3SourcePropertiesBuilder
impl Send for S3SourcePropertiesBuilder
impl Sync for S3SourcePropertiesBuilder
impl Unpin for S3SourcePropertiesBuilder
impl UnwindSafe for S3SourcePropertiesBuilder
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
Mutably borrows from an owned value. Read more