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