Class: Aws::AccessAnalyzer::Types::Substring

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb

Overview

A reference to a substring of a literal string in a JSON document.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#lengthInteger

The length of the substring.

Returns:

  • (Integer)


3653
3654
3655
3656
3657
3658
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3653

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

#startInteger

The start index of the substring, starting from 0.

Returns:

  • (Integer)


3653
3654
3655
3656
3657
3658
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3653

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