Class: Aws::Lambda::Types::PutFunctionRecursionConfigResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Lambda::Types::PutFunctionRecursionConfigResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lambda/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #recursive_loop  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of your function’s recursive loop detection configuration.
 
Instance Attribute Details
#recursive_loop ⇒ String
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.
      5366 5367 5368 5369 5370  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 5366 class PutFunctionRecursionConfigResponse < Struct.new( :recursive_loop) SENSITIVE = [] include Aws::Structure end  |