pub struct BucketNotificationArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> BucketNotificationArgsBuilder<S>
impl<S: State> BucketNotificationArgsBuilder<S>
sourcepub fn build_struct(self) -> BucketNotificationArgswhere
S: IsComplete,
pub fn build_struct(self) -> BucketNotificationArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn bucket(
self,
value: impl Into<Output<String>>,
) -> BucketNotificationArgsBuilder<SetBucket<S>>where
S::Bucket: IsUnset,
pub fn bucket(
self,
value: impl Into<Output<String>>,
) -> BucketNotificationArgsBuilder<SetBucket<S>>where
S::Bucket: IsUnset,
Required.
Name of the bucket for notification configuration.
The following arguments are optional:
sourcepub fn eventbridge(
self,
value: impl Into<Output<Option<bool>>>,
) -> BucketNotificationArgsBuilder<SetEventbridge<S>>where
S::Eventbridge: IsUnset,
pub fn eventbridge(
self,
value: impl Into<Output<Option<bool>>>,
) -> BucketNotificationArgsBuilder<SetEventbridge<S>>where
S::Eventbridge: IsUnset,
sourcepub fn maybe_eventbridge(
self,
value: Option<impl Into<Output<Option<bool>>>>,
) -> BucketNotificationArgsBuilder<SetEventbridge<S>>where
S::Eventbridge: IsUnset,
pub fn maybe_eventbridge(
self,
value: Option<impl Into<Output<Option<bool>>>>,
) -> BucketNotificationArgsBuilder<SetEventbridge<S>>where
S::Eventbridge: IsUnset,
sourcepub fn lambda_functions(
self,
value: impl Into<Output<Option<Vec<BucketNotificationLambdaFunction>>>>,
) -> BucketNotificationArgsBuilder<SetLambdaFunctions<S>>where
S::LambdaFunctions: IsUnset,
pub fn lambda_functions(
self,
value: impl Into<Output<Option<Vec<BucketNotificationLambdaFunction>>>>,
) -> BucketNotificationArgsBuilder<SetLambdaFunctions<S>>where
S::LambdaFunctions: IsUnset,
sourcepub fn maybe_lambda_functions(
self,
value: Option<impl Into<Output<Option<Vec<BucketNotificationLambdaFunction>>>>>,
) -> BucketNotificationArgsBuilder<SetLambdaFunctions<S>>where
S::LambdaFunctions: IsUnset,
pub fn maybe_lambda_functions(
self,
value: Option<impl Into<Output<Option<Vec<BucketNotificationLambdaFunction>>>>>,
) -> BucketNotificationArgsBuilder<SetLambdaFunctions<S>>where
S::LambdaFunctions: IsUnset,
sourcepub fn queues(
self,
value: impl Into<Output<Option<Vec<BucketNotificationQueue>>>>,
) -> BucketNotificationArgsBuilder<SetQueues<S>>where
S::Queues: IsUnset,
pub fn queues(
self,
value: impl Into<Output<Option<Vec<BucketNotificationQueue>>>>,
) -> BucketNotificationArgsBuilder<SetQueues<S>>where
S::Queues: IsUnset,
sourcepub fn maybe_queues(
self,
value: Option<impl Into<Output<Option<Vec<BucketNotificationQueue>>>>>,
) -> BucketNotificationArgsBuilder<SetQueues<S>>where
S::Queues: IsUnset,
pub fn maybe_queues(
self,
value: Option<impl Into<Output<Option<Vec<BucketNotificationQueue>>>>>,
) -> BucketNotificationArgsBuilder<SetQueues<S>>where
S::Queues: IsUnset,
sourcepub fn topics(
self,
value: impl Into<Output<Option<Vec<BucketNotificationTopic>>>>,
) -> BucketNotificationArgsBuilder<SetTopics<S>>where
S::Topics: IsUnset,
pub fn topics(
self,
value: impl Into<Output<Option<Vec<BucketNotificationTopic>>>>,
) -> BucketNotificationArgsBuilder<SetTopics<S>>where
S::Topics: IsUnset,
sourcepub fn maybe_topics(
self,
value: Option<impl Into<Output<Option<Vec<BucketNotificationTopic>>>>>,
) -> BucketNotificationArgsBuilder<SetTopics<S>>where
S::Topics: IsUnset,
pub fn maybe_topics(
self,
value: Option<impl Into<Output<Option<Vec<BucketNotificationTopic>>>>>,
) -> BucketNotificationArgsBuilder<SetTopics<S>>where
S::Topics: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for BucketNotificationArgsBuilder<S>
impl<S> RefUnwindSafe for BucketNotificationArgsBuilder<S>
impl<S> Send for BucketNotificationArgsBuilder<S>
impl<S> Sync for BucketNotificationArgsBuilder<S>
impl<S> Unpin for BucketNotificationArgsBuilder<S>
impl<S> UnwindSafe for BucketNotificationArgsBuilder<S>
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