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:



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

#startTypes::Position

The start position of the span (inclusive).

Returns:



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