Class: Aws::SecurityHub::Types::Range
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::Range
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
Identifies where the sensitive data begins and ends.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end ⇒ Integer
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.
-
#start ⇒ Integer
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.
-
#start_column ⇒ Integer
In the line where the sensitive data starts, the column within the line where the sensitive data starts.
Instance Attribute Details
#end ⇒ Integer
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.
27928 27929 27930 27931 27932 27933 27934 |
# File 'lib/aws-sdk-securityhub/types.rb', line 27928 class Range < Struct.new( :start, :end, :start_column) SENSITIVE = [] include Aws::Structure end |
#start ⇒ Integer
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.
27928 27929 27930 27931 27932 27933 27934 |
# File 'lib/aws-sdk-securityhub/types.rb', line 27928 class Range < Struct.new( :start, :end, :start_column) SENSITIVE = [] include Aws::Structure end |
#start_column ⇒ Integer
In the line where the sensitive data starts, the column within the line where the sensitive data starts.
27928 27929 27930 27931 27932 27933 27934 |
# File 'lib/aws-sdk-securityhub/types.rb', line 27928 class Range < Struct.new( :start, :end, :start_column) SENSITIVE = [] include Aws::Structure end |