#[non_exhaustive]pub struct S3DestinationBuilder { /* private fields */ }
Expand description
A builder for S3Destination
.
Implementations§
source§impl S3DestinationBuilder
impl S3DestinationBuilder
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 used as the destination of an export file.
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 used as the destination of an export file.
sourcepub fn get_bucket(&self) -> &Option<String>
pub fn get_bucket(&self) -> &Option<String>
The name of the Amazon S3 bucket used as the destination of an export file.
sourcepub fn key(self, input: impl Into<String>) -> Self
pub fn key(self, input: impl Into<String>) -> Self
The Amazon S3 bucket key of an export file.
The key uniquely identifies the object, or export file, in the S3 bucket.
sourcepub fn set_key(self, input: Option<String>) -> Self
pub fn set_key(self, input: Option<String>) -> Self
The Amazon S3 bucket key of an export file.
The key uniquely identifies the object, or export file, in the S3 bucket.
sourcepub fn get_key(&self) -> &Option<String>
pub fn get_key(&self) -> &Option<String>
The Amazon S3 bucket key of an export file.
The key uniquely identifies the object, or export file, in the S3 bucket.
sourcepub fn metadata_key(self, input: impl Into<String>) -> Self
pub fn metadata_key(self, input: impl Into<String>) -> Self
The Amazon S3 bucket key of a metadata file.
The key uniquely identifies the object, or metadata file, in the S3 bucket.
sourcepub fn set_metadata_key(self, input: Option<String>) -> Self
pub fn set_metadata_key(self, input: Option<String>) -> Self
The Amazon S3 bucket key of a metadata file.
The key uniquely identifies the object, or metadata file, in the S3 bucket.
sourcepub fn get_metadata_key(&self) -> &Option<String>
pub fn get_metadata_key(&self) -> &Option<String>
The Amazon S3 bucket key of a metadata file.
The key uniquely identifies the object, or metadata file, in the S3 bucket.
sourcepub fn build(self) -> S3Destination
pub fn build(self) -> S3Destination
Consumes the builder and constructs a S3Destination
.
Trait Implementations§
source§impl Clone for S3DestinationBuilder
impl Clone for S3DestinationBuilder
source§fn clone(&self) -> S3DestinationBuilder
fn clone(&self) -> S3DestinationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for S3DestinationBuilder
impl Debug for S3DestinationBuilder
source§impl Default for S3DestinationBuilder
impl Default for S3DestinationBuilder
source§fn default() -> S3DestinationBuilder
fn default() -> S3DestinationBuilder
source§impl PartialEq for S3DestinationBuilder
impl PartialEq for S3DestinationBuilder
source§fn eq(&self, other: &S3DestinationBuilder) -> bool
fn eq(&self, other: &S3DestinationBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.