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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appsync/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)


806
807
808
809
810
811
812
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 806

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)


806
807
808
809
810
811
812
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 806

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)


806
807
808
809
810
811
812
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 806

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