Struct aws_sdk_dynamodb::types::builders::S3BucketSourceBuilder
source · #[non_exhaustive]pub struct S3BucketSourceBuilder { /* private fields */ }
Expand description
A builder for S3BucketSource
.
Implementations§
source§impl S3BucketSourceBuilder
impl S3BucketSourceBuilder
sourcepub fn s3_bucket_owner(self, input: impl Into<String>) -> Self
pub fn s3_bucket_owner(self, input: impl Into<String>) -> Self
The account number of the S3 bucket that is being imported from. If the bucket is owned by the requester this is optional.
sourcepub fn set_s3_bucket_owner(self, input: Option<String>) -> Self
pub fn set_s3_bucket_owner(self, input: Option<String>) -> Self
The account number of the S3 bucket that is being imported from. If the bucket is owned by the requester this is optional.
sourcepub fn s3_bucket(self, input: impl Into<String>) -> Self
pub fn s3_bucket(self, input: impl Into<String>) -> Self
The S3 bucket that is being imported from.
sourcepub fn set_s3_bucket(self, input: Option<String>) -> Self
pub fn set_s3_bucket(self, input: Option<String>) -> Self
The S3 bucket that is being imported from.
sourcepub fn s3_key_prefix(self, input: impl Into<String>) -> Self
pub fn s3_key_prefix(self, input: impl Into<String>) -> Self
The key prefix shared by all S3 Objects that are being imported.
sourcepub fn set_s3_key_prefix(self, input: Option<String>) -> Self
pub fn set_s3_key_prefix(self, input: Option<String>) -> Self
The key prefix shared by all S3 Objects that are being imported.
sourcepub fn build(self) -> S3BucketSource
pub fn build(self) -> S3BucketSource
Consumes the builder and constructs a S3BucketSource
.
Trait Implementations§
source§impl Clone for S3BucketSourceBuilder
impl Clone for S3BucketSourceBuilder
source§fn clone(&self) -> S3BucketSourceBuilder
fn clone(&self) -> S3BucketSourceBuilder
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 S3BucketSourceBuilder
impl Debug for S3BucketSourceBuilder
source§impl Default for S3BucketSourceBuilder
impl Default for S3BucketSourceBuilder
source§fn default() -> S3BucketSourceBuilder
fn default() -> S3BucketSourceBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<S3BucketSourceBuilder> for S3BucketSourceBuilder
impl PartialEq<S3BucketSourceBuilder> for S3BucketSourceBuilder
source§fn eq(&self, other: &S3BucketSourceBuilder) -> bool
fn eq(&self, other: &S3BucketSourceBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.