Class: Aws::SecurityHub::Types::Range

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

Overview

Identifies where the sensitive data begins and ends.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#endInteger

The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.

Returns:

  • (Integer)


27761
27762
27763
27764
27765
27766
27767
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 27761

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

#startInteger

The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.

Returns:

  • (Integer)


27761
27762
27763
27764
27765
27766
27767
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 27761

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

#start_columnInteger

In the line where the sensitive data starts, the column within the line where the sensitive data starts.

Returns:

  • (Integer)


27761
27762
27763
27764
27765
27766
27767
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 27761

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