Class: Aws::AccessAnalyzer::Types::Position

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb

Overview

A position in a policy.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#columnInteger

The column of the position, starting from 0.

Returns:

  • (Integer)


2971
2972
2973
2974
2975
2976
2977
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 2971

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

#lineInteger

The line of the position, starting from 1.

Returns:

  • (Integer)


2971
2972
2973
2974
2975
2976
2977
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 2971

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

#offsetInteger

The offset within the policy that corresponds to the position, starting from 0.

Returns:

  • (Integer)


2971
2972
2973
2974
2975
2976
2977
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 2971

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