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

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

Instance Attribute Details

#endTypes::Position

The end position of the span (exclusive).

Returns:



3507
3508
3509
3510
3511
3512
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3507

class Span < Struct.new(
  :start,
  :end)
  SENSITIVE = []
  include Aws::Structure
end

#startTypes::Position

The start position of the span (inclusive).

Returns:



3507
3508
3509
3510
3511
3512
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3507

class Span < Struct.new(
  :start,
  :end)
  SENSITIVE = []
  include Aws::Structure
end