Class: Aws::AccessAnalyzer::Types::Span

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#endTypes::Position

The end position of the span (exclusive).

Returns:



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

#startTypes::Position

The start position of the span (inclusive).

Returns:



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