#[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 ==
.impl StructuralPartialEq for S3DestinationBuilder
Auto Trait Implementations§
impl Freeze for S3DestinationBuilder
impl RefUnwindSafe for S3DestinationBuilder
impl Send for S3DestinationBuilder
impl Sync for S3DestinationBuilder
impl Unpin for S3DestinationBuilder
impl UnwindSafe for S3DestinationBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more