Class: Aws::AppSync::Types::CodeErrorLocation
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::AppSync::Types::CodeErrorLocation
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-appsync/types.rb
 
Overview
Describes the location of the error in a code sample.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #column  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The column number in the code.
 - 
  
    
      #line  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The line number in the code.
 - 
  
    
      #span  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The span/length of the error.
 
Instance Attribute Details
#column ⇒ Integer
The column number in the code. Defaults to ‘0` if unknown.
      806 807 808 809 810 811 812  | 
    
      # File 'lib/aws-sdk-appsync/types.rb', line 806 class CodeErrorLocation < Struct.new( :line, :column, :span) SENSITIVE = [] include Aws::Structure end  | 
  
#line ⇒ Integer
The line number in the code. Defaults to ‘0` if unknown.
      806 807 808 809 810 811 812  | 
    
      # File 'lib/aws-sdk-appsync/types.rb', line 806 class CodeErrorLocation < Struct.new( :line, :column, :span) SENSITIVE = [] include Aws::Structure end  | 
  
#span ⇒ Integer
The span/length of the error. Defaults to ‘-1` if unknown.
      806 807 808 809 810 811 812  | 
    
      # File 'lib/aws-sdk-appsync/types.rb', line 806 class CodeErrorLocation < Struct.new( :line, :column, :span) SENSITIVE = [] include Aws::Structure end  |