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)


26716
26717
26718
26719
26720
26721
26722
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26716

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)


26716
26717
26718
26719
26720
26721
26722
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26716

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)


26716
26717
26718
26719
26720
26721
26722
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26716

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