Struct aws_sdk_lambda::operation::get_function_recursion_config::GetFunctionRecursionConfigOutput
source · #[non_exhaustive]pub struct GetFunctionRecursionConfigOutput {
pub recursive_loop: Option<RecursiveLoop>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.recursive_loop: 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.
Implementations§
source§impl GetFunctionRecursionConfigOutput
impl GetFunctionRecursionConfigOutput
sourcepub fn recursive_loop(&self) -> Option<&RecursiveLoop>
pub fn 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.
source§impl GetFunctionRecursionConfigOutput
impl GetFunctionRecursionConfigOutput
sourcepub fn builder() -> GetFunctionRecursionConfigOutputBuilder
pub fn builder() -> GetFunctionRecursionConfigOutputBuilder
Creates a new builder-style object to manufacture GetFunctionRecursionConfigOutput
.
Trait Implementations§
source§impl Clone for GetFunctionRecursionConfigOutput
impl Clone for GetFunctionRecursionConfigOutput
source§fn clone(&self) -> GetFunctionRecursionConfigOutput
fn clone(&self) -> GetFunctionRecursionConfigOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GetFunctionRecursionConfigOutput
impl PartialEq for GetFunctionRecursionConfigOutput
source§fn eq(&self, other: &GetFunctionRecursionConfigOutput) -> bool
fn eq(&self, other: &GetFunctionRecursionConfigOutput) -> bool
self
and other
values to be equal, and is used by ==
.source§impl RequestId for GetFunctionRecursionConfigOutput
impl RequestId for GetFunctionRecursionConfigOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetFunctionRecursionConfigOutput
Auto Trait Implementations§
impl Freeze for GetFunctionRecursionConfigOutput
impl RefUnwindSafe for GetFunctionRecursionConfigOutput
impl Send for GetFunctionRecursionConfigOutput
impl Sync for GetFunctionRecursionConfigOutput
impl Unpin for GetFunctionRecursionConfigOutput
impl UnwindSafe for GetFunctionRecursionConfigOutput
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