Struct aws_sdk_lambda::operation::put_function_recursion_config::PutFunctionRecursionConfigOutput
source · #[non_exhaustive]pub struct PutFunctionRecursionConfigOutput {
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>
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.
Implementations§
source§impl PutFunctionRecursionConfigOutput
impl PutFunctionRecursionConfigOutput
sourcepub fn recursive_loop(&self) -> Option<&RecursiveLoop>
pub fn 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.
source§impl PutFunctionRecursionConfigOutput
impl PutFunctionRecursionConfigOutput
sourcepub fn builder() -> PutFunctionRecursionConfigOutputBuilder
pub fn builder() -> PutFunctionRecursionConfigOutputBuilder
Creates a new builder-style object to manufacture PutFunctionRecursionConfigOutput
.
Trait Implementations§
source§impl Clone for PutFunctionRecursionConfigOutput
impl Clone for PutFunctionRecursionConfigOutput
source§fn clone(&self) -> PutFunctionRecursionConfigOutput
fn clone(&self) -> PutFunctionRecursionConfigOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for PutFunctionRecursionConfigOutput
impl PartialEq for PutFunctionRecursionConfigOutput
source§fn eq(&self, other: &PutFunctionRecursionConfigOutput) -> bool
fn eq(&self, other: &PutFunctionRecursionConfigOutput) -> bool
self
and other
values to be equal, and is used by ==
.source§impl RequestId for PutFunctionRecursionConfigOutput
impl RequestId for PutFunctionRecursionConfigOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for PutFunctionRecursionConfigOutput
Auto Trait Implementations§
impl Freeze for PutFunctionRecursionConfigOutput
impl RefUnwindSafe for PutFunctionRecursionConfigOutput
impl Send for PutFunctionRecursionConfigOutput
impl Sync for PutFunctionRecursionConfigOutput
impl Unpin for PutFunctionRecursionConfigOutput
impl UnwindSafe for PutFunctionRecursionConfigOutput
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