Class: Aws::AccessAnalyzer::Types::Span
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::Span
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-accessanalyzer/types.rb
Overview
A span in a policy. The span consists of a start position (inclusive) and end position (exclusive).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end ⇒ Types::Position
The end position of the span (exclusive).
-
#start ⇒ Types::Position
The start position of the span (inclusive).
Instance Attribute Details
#end ⇒ Types::Position
The end position of the span (exclusive).
3717 3718 3719 3720 3721 3722 |
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 3717 class Span < Struct.new( :start, :end) SENSITIVE = [] include Aws::Structure end |
#start ⇒ Types::Position
The start position of the span (inclusive).
3717 3718 3719 3720 3721 3722 |
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 3717 class Span < Struct.new( :start, :end) SENSITIVE = [] include Aws::Structure end |