Struct aws_sdk_lambda::operation::put_function_recursion_config::builders::PutFunctionRecursionConfigOutputBuilder
source · #[non_exhaustive]pub struct PutFunctionRecursionConfigOutputBuilder { /* private fields */ }
Expand description
A builder for PutFunctionRecursionConfigOutput
.
Implementations§
source§impl PutFunctionRecursionConfigOutputBuilder
impl PutFunctionRecursionConfigOutputBuilder
sourcepub fn recursive_loop(self, input: RecursiveLoop) -> Self
pub fn recursive_loop(self, input: RecursiveLoop) -> Self
The status of your function's recursive loop detection configuration.
When this value is set to Allow
and Lambda detects your function being invoked as part of a recursive loop, it doesn't take any action.
When this value is set to Terminate
and Lambda detects your function being invoked as part of a recursive loop, it stops your function being invoked and notifies you.
sourcepub fn set_recursive_loop(self, input: Option<RecursiveLoop>) -> Self
pub fn set_recursive_loop(self, input: Option<RecursiveLoop>) -> Self
The status of your function's recursive loop detection configuration.
When this value is set to Allow
and Lambda detects your function being invoked as part of a recursive loop, it doesn't take any action.
When this value is set to Terminate
and Lambda detects your function being invoked as part of a recursive loop, it stops your function being invoked and notifies you.
sourcepub fn get_recursive_loop(&self) -> &Option<RecursiveLoop>
pub fn get_recursive_loop(&self) -> &Option<RecursiveLoop>
The status of your function's recursive loop detection configuration.
When this value is set to Allow
and Lambda detects your function being invoked as part of a recursive loop, it doesn't take any action.
When this value is set to Terminate
and Lambda detects your function being invoked as part of a recursive loop, it stops your function being invoked and notifies you.
sourcepub fn build(self) -> PutFunctionRecursionConfigOutput
pub fn build(self) -> PutFunctionRecursionConfigOutput
Consumes the builder and constructs a PutFunctionRecursionConfigOutput
.
Trait Implementations§
source§impl Clone for PutFunctionRecursionConfigOutputBuilder
impl Clone for PutFunctionRecursionConfigOutputBuilder
source§fn clone(&self) -> PutFunctionRecursionConfigOutputBuilder
fn clone(&self) -> PutFunctionRecursionConfigOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for PutFunctionRecursionConfigOutputBuilder
impl Default for PutFunctionRecursionConfigOutputBuilder
source§fn default() -> PutFunctionRecursionConfigOutputBuilder
fn default() -> PutFunctionRecursionConfigOutputBuilder
source§impl PartialEq for PutFunctionRecursionConfigOutputBuilder
impl PartialEq for PutFunctionRecursionConfigOutputBuilder
source§fn eq(&self, other: &PutFunctionRecursionConfigOutputBuilder) -> bool
fn eq(&self, other: &PutFunctionRecursionConfigOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PutFunctionRecursionConfigOutputBuilder
Auto Trait Implementations§
impl Freeze for PutFunctionRecursionConfigOutputBuilder
impl RefUnwindSafe for PutFunctionRecursionConfigOutputBuilder
impl Send for PutFunctionRecursionConfigOutputBuilder
impl Sync for PutFunctionRecursionConfigOutputBuilder
impl Unpin for PutFunctionRecursionConfigOutputBuilder
impl UnwindSafe for PutFunctionRecursionConfigOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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