#[non_exhaustive]pub struct S3DestinationConfigBuilder { /* private fields */ }Expand description
A builder for S3DestinationConfig.
Implementations§
source§impl S3DestinationConfigBuilder
impl S3DestinationConfigBuilder
sourcepub fn bucket(self, input: impl Into<String>) -> Self
pub fn bucket(self, input: impl Into<String>) -> Self
The name of the bucket in which Evidently stores evaluation events.
sourcepub fn set_bucket(self, input: Option<String>) -> Self
pub fn set_bucket(self, input: Option<String>) -> Self
The name of the bucket in which Evidently stores evaluation events.
sourcepub fn prefix(self, input: impl Into<String>) -> Self
pub fn prefix(self, input: impl Into<String>) -> Self
The bucket prefix in which Evidently stores evaluation events.
sourcepub fn set_prefix(self, input: Option<String>) -> Self
pub fn set_prefix(self, input: Option<String>) -> Self
The bucket prefix in which Evidently stores evaluation events.
sourcepub fn build(self) -> S3DestinationConfig
pub fn build(self) -> S3DestinationConfig
Consumes the builder and constructs a S3DestinationConfig.
Trait Implementations§
source§impl Clone for S3DestinationConfigBuilder
impl Clone for S3DestinationConfigBuilder
source§fn clone(&self) -> S3DestinationConfigBuilder
fn clone(&self) -> S3DestinationConfigBuilder
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 S3DestinationConfigBuilder
impl Debug for S3DestinationConfigBuilder
source§impl Default for S3DestinationConfigBuilder
impl Default for S3DestinationConfigBuilder
source§fn default() -> S3DestinationConfigBuilder
fn default() -> S3DestinationConfigBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<S3DestinationConfigBuilder> for S3DestinationConfigBuilder
impl PartialEq<S3DestinationConfigBuilder> for S3DestinationConfigBuilder
source§fn eq(&self, other: &S3DestinationConfigBuilder) -> bool
fn eq(&self, other: &S3DestinationConfigBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.