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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


3948
3949
3950
3951
3952
3953
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 3948

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

#startInteger

The start index of the substring, starting from 0.

Returns:

  • (Integer)


3948
3949
3950
3951
3952
3953
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 3948

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