Class: Aws::AppSync::Types::CodeErrorLocation

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#columnInteger

The column number in the code. Defaults to ‘0` if unknown.

Returns:

  • (Integer)


628
629
630
631
632
633
634
# File 'lib/aws-sdk-appsync/types.rb', line 628

class CodeErrorLocation < Struct.new(
  :line,
  :column,
  :span)
  SENSITIVE = []
  include Aws::Structure
end

#lineInteger

The line number in the code. Defaults to ‘0` if unknown.

Returns:

  • (Integer)


628
629
630
631
632
633
634
# File 'lib/aws-sdk-appsync/types.rb', line 628

class CodeErrorLocation < Struct.new(
  :line,
  :column,
  :span)
  SENSITIVE = []
  include Aws::Structure
end

#spanInteger

The span/length of the error. Defaults to ‘-1` if unknown.

Returns:

  • (Integer)


628
629
630
631
632
633
634
# File 'lib/aws-sdk-appsync/types.rb', line 628

class CodeErrorLocation < Struct.new(
  :line,
  :column,
  :span)
  SENSITIVE = []
  include Aws::Structure
end