Class: Aws::Lambda::Types::RuntimeVersionError
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Lambda::Types::RuntimeVersionError
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lambda/types.rb
 
Overview
Any error returned when the runtime version information for the function could not be retrieved.
Constant Summary collapse
- SENSITIVE =
 [:message]
Instance Attribute Summary collapse
- 
  
    
      #error_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The error code.
 - 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The error message.
 
Instance Attribute Details
#error_code ⇒ String
The error code.
      5774 5775 5776 5777 5778 5779  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 5774 class RuntimeVersionError < Struct.new( :error_code, :message) SENSITIVE = [:message] include Aws::Structure end  | 
  
#message ⇒ String
The error message.
      5774 5775 5776 5777 5778 5779  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 5774 class RuntimeVersionError < Struct.new( :error_code, :message) SENSITIVE = [:message] include Aws::Structure end  |