Class: Aws::AppSync::Types::BadRequestDetail
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::AppSync::Types::BadRequestDetail
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-appsync/types.rb
 
Overview
Provides further details for the reason behind the bad request. For reason type ‘CODE_ERROR`, the detail will contain a list of code errors.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #code_errors  ⇒ Array<Types::CodeError> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Contains the list of errors in the request.
 
Instance Attribute Details
#code_errors ⇒ Array<Types::CodeError>
Contains the list of errors in the request.
      640 641 642 643 644  | 
    
      # File 'lib/aws-sdk-appsync/types.rb', line 640 class BadRequestDetail < Struct.new( :code_errors) SENSITIVE = [] include Aws::Structure end  |