Class: Aws::AccessAnalyzer::Types::Position
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::Position
- 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
-
#column ⇒ Integer
The column of the position, starting from 0.
-
#line ⇒ Integer
The line of the position, starting from 1.
-
#offset ⇒ Integer
The offset within the policy that corresponds to the position, starting from 0.
Instance Attribute Details
#column ⇒ Integer
The column of the position, starting from 0.
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 |
#line ⇒ Integer
The line of the position, starting from 1.
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 |
#offset ⇒ Integer
The offset within the policy that corresponds to the position, starting from 0.
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 |