Class: Aws::Lambda::Types::GetFunctionRecursionConfigResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::GetFunctionRecursionConfigResponse
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#recursive_loop ⇒ String
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.
Instance Attribute Details
#recursive_loop ⇒ String
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.
2878 2879 2880 2881 2882 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2878 class GetFunctionRecursionConfigResponse < Struct.new( :recursive_loop) SENSITIVE = [] include Aws::Structure end |