pub struct Builder { /* private fields */ }
Expand description
A builder for S3DestinationConfig
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn bucket(self, input: impl Into<String>) -> Self
pub fn bucket(self, input: impl Into<String>) -> Self
The name of the Amazon S3 bucket to use as the destination for an export job.
sourcepub fn set_bucket(self, input: Option<String>) -> Self
pub fn set_bucket(self, input: Option<String>) -> Self
The name of the Amazon S3 bucket to use as the destination for an export job.
sourcepub fn key_prefix(self, input: impl Into<String>) -> Self
pub fn key_prefix(self, input: impl Into<String>) -> Self
The Amazon S3 bucket prefix for an export job.
sourcepub fn set_key_prefix(self, input: Option<String>) -> Self
pub fn set_key_prefix(self, input: Option<String>) -> Self
The Amazon S3 bucket prefix for an export job.
sourcepub fn build(self) -> S3DestinationConfig
pub fn build(self) -> S3DestinationConfig
Consumes the builder and constructs a S3DestinationConfig
.