Class: Aws::Lambda::Types::RecursiveInvocationException
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Lambda::Types::RecursiveInvocationException
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lambda/types.rb
 
Overview
Lambda has detected your function being invoked in a recursive loop with other Amazon Web Services resources and stopped your function’s invocation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The exception message.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The exception type.
 
Instance Attribute Details
#message ⇒ String
The exception message.
      5563 5564 5565 5566 5567 5568  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 5563 class RecursiveInvocationException < Struct.new( :type, :message) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ String
The exception type.
      5563 5564 5565 5566 5567 5568  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 5563 class RecursiveInvocationException < Struct.new( :type, :message) SENSITIVE = [] include Aws::Structure end  |