Class: Aws::AccessAnalyzer::Types::Span
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::Span
- Defined in:
- gems/aws-sdk-accessanalyzer/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).
3802 3803 3804 3805 3806 3807 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3802 class Span < Struct.new( :start, :end) SENSITIVE = [] include Aws::Structure end |
#start ⇒ Types::Position
The start position of the span (inclusive).
3802 3803 3804 3805 3806 3807 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3802 class Span < Struct.new( :start, :end) SENSITIVE = [] include Aws::Structure end |