Class: Aws::AppSync::Types::EvaluateCodeErrorDetail
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::AppSync::Types::EvaluateCodeErrorDetail
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-appsync/types.rb
 
Overview
Contains the list of errors from a code evaluation response.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #code_errors  ⇒ Array<Types::CodeError> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Contains the list of ‘CodeError` objects.
 - 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The error payload.
 
Instance Attribute Details
#code_errors ⇒ Array<Types::CodeError>
Contains the list of ‘CodeError` objects.
      2498 2499 2500 2501 2502 2503  | 
    
      # File 'lib/aws-sdk-appsync/types.rb', line 2498 class EvaluateCodeErrorDetail < Struct.new( :message, :code_errors) SENSITIVE = [] include Aws::Structure end  | 
  
#message ⇒ String
The error payload.
      2498 2499 2500 2501 2502 2503  | 
    
      # File 'lib/aws-sdk-appsync/types.rb', line 2498 class EvaluateCodeErrorDetail < Struct.new( :message, :code_errors) SENSITIVE = [] include Aws::Structure end  |