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)


3222
3223
3224
3225
3226
3227
3228
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3222

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

#lineInteger

The line of the position, starting from 1.

Returns:

  • (Integer)


3222
3223
3224
3225
3226
3227
3228
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3222

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)


3222
3223
3224
3225
3226
3227
3228
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3222

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