#[non_exhaustive]pub struct AwsS3BucketNotificationConfigurationBuilder { /* private fields */ }
Expand description
A builder for AwsS3BucketNotificationConfiguration
.
Implementations§
source§impl AwsS3BucketNotificationConfigurationBuilder
impl AwsS3BucketNotificationConfigurationBuilder
sourcepub fn configurations(
self,
input: AwsS3BucketNotificationConfigurationDetail
) -> Self
pub fn configurations( self, input: AwsS3BucketNotificationConfigurationDetail ) -> Self
Appends an item to configurations
.
To override the contents of this collection use set_configurations
.
Configurations for S3 bucket notifications.
sourcepub fn set_configurations(
self,
input: Option<Vec<AwsS3BucketNotificationConfigurationDetail>>
) -> Self
pub fn set_configurations( self, input: Option<Vec<AwsS3BucketNotificationConfigurationDetail>> ) -> Self
Configurations for S3 bucket notifications.
sourcepub fn get_configurations(
&self
) -> &Option<Vec<AwsS3BucketNotificationConfigurationDetail>>
pub fn get_configurations( &self ) -> &Option<Vec<AwsS3BucketNotificationConfigurationDetail>>
Configurations for S3 bucket notifications.
sourcepub fn build(self) -> AwsS3BucketNotificationConfiguration
pub fn build(self) -> AwsS3BucketNotificationConfiguration
Consumes the builder and constructs a AwsS3BucketNotificationConfiguration
.
Trait Implementations§
source§impl Clone for AwsS3BucketNotificationConfigurationBuilder
impl Clone for AwsS3BucketNotificationConfigurationBuilder
source§fn clone(&self) -> AwsS3BucketNotificationConfigurationBuilder
fn clone(&self) -> AwsS3BucketNotificationConfigurationBuilder
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 Default for AwsS3BucketNotificationConfigurationBuilder
impl Default for AwsS3BucketNotificationConfigurationBuilder
source§fn default() -> AwsS3BucketNotificationConfigurationBuilder
fn default() -> AwsS3BucketNotificationConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AwsS3BucketNotificationConfigurationBuilder
impl PartialEq for AwsS3BucketNotificationConfigurationBuilder
source§fn eq(&self, other: &AwsS3BucketNotificationConfigurationBuilder) -> bool
fn eq(&self, other: &AwsS3BucketNotificationConfigurationBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsS3BucketNotificationConfigurationBuilder
Auto Trait Implementations§
impl Freeze for AwsS3BucketNotificationConfigurationBuilder
impl RefUnwindSafe for AwsS3BucketNotificationConfigurationBuilder
impl Send for AwsS3BucketNotificationConfigurationBuilder
impl Sync for AwsS3BucketNotificationConfigurationBuilder
impl Unpin for AwsS3BucketNotificationConfigurationBuilder
impl UnwindSafe for AwsS3BucketNotificationConfigurationBuilder
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>
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.