#[non_exhaustive]pub struct S3ConfigurationBuilder { /* private fields */ }
Expand description
A builder for S3Configuration
.
Implementations§
source§impl S3ConfigurationBuilder
impl S3ConfigurationBuilder
sourcepub fn bucket_name(self, input: impl Into<String>) -> Self
pub fn bucket_name(self, input: impl Into<String>) -> Self
The name of the S3 bucket to deliver logs to.
This field is required.sourcepub fn set_bucket_name(self, input: Option<String>) -> Self
pub fn set_bucket_name(self, input: Option<String>) -> Self
The name of the S3 bucket to deliver logs to.
sourcepub fn get_bucket_name(&self) -> &Option<String>
pub fn get_bucket_name(&self) -> &Option<String>
The name of the S3 bucket to deliver logs to.
sourcepub fn enabled(self, input: bool) -> Self
pub fn enabled(self, input: bool) -> Self
Indicates whether log delivery to the S3 bucket is enabled.
This field is required.sourcepub fn set_enabled(self, input: Option<bool>) -> Self
pub fn set_enabled(self, input: Option<bool>) -> Self
Indicates whether log delivery to the S3 bucket is enabled.
sourcepub fn get_enabled(&self) -> &Option<bool>
pub fn get_enabled(&self) -> &Option<bool>
Indicates whether log delivery to the S3 bucket is enabled.
sourcepub fn build(self) -> Result<S3Configuration, BuildError>
pub fn build(self) -> Result<S3Configuration, BuildError>
Consumes the builder and constructs a S3Configuration
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for S3ConfigurationBuilder
impl Clone for S3ConfigurationBuilder
source§fn clone(&self) -> S3ConfigurationBuilder
fn clone(&self) -> S3ConfigurationBuilder
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 S3ConfigurationBuilder
impl Debug for S3ConfigurationBuilder
source§impl Default for S3ConfigurationBuilder
impl Default for S3ConfigurationBuilder
source§fn default() -> S3ConfigurationBuilder
fn default() -> S3ConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for S3ConfigurationBuilder
impl PartialEq for S3ConfigurationBuilder
source§fn eq(&self, other: &S3ConfigurationBuilder) -> bool
fn eq(&self, other: &S3ConfigurationBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for S3ConfigurationBuilder
Auto Trait Implementations§
impl Freeze for S3ConfigurationBuilder
impl RefUnwindSafe for S3ConfigurationBuilder
impl Send for S3ConfigurationBuilder
impl Sync for S3ConfigurationBuilder
impl Unpin for S3ConfigurationBuilder
impl UnwindSafe for S3ConfigurationBuilder
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.