Class: Aws::Lambda::Types::GetFunctionRecursionConfigResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::GetFunctionRecursionConfigResponse
- Includes:
- Structure
- Defined in:
- 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.
3012 3013 3014 3015 3016 |
# File 'lib/aws-sdk-lambda/types.rb', line 3012 class GetFunctionRecursionConfigResponse < Struct.new( :recursive_loop) SENSITIVE = [] include Aws::Structure end |