Class: Aws::Inspector2::Types::CodeFilePath
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector2::Types::CodeFilePath
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-inspector2/types.rb
Overview
Contains information on where a code vulnerability is located in your Lambda function.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_line ⇒ Integer
The line number of the last line of code that a vulnerability was found in.
-
#file_name ⇒ String
The name of the file the code vulnerability was found in.
-
#file_path ⇒ String
The file path to the code that a vulnerability was found in.
-
#start_line ⇒ Integer
The line number of the first line of code that a vulnerability was found in.
Instance Attribute Details
#end_line ⇒ Integer
The line number of the last line of code that a vulnerability was found in.
1659 1660 1661 1662 1663 1664 1665 1666 |
# File 'lib/aws-sdk-inspector2/types.rb', line 1659 class CodeFilePath < Struct.new( :end_line, :file_name, :file_path, :start_line) SENSITIVE = [] include Aws::Structure end |
#file_name ⇒ String
The name of the file the code vulnerability was found in.
1659 1660 1661 1662 1663 1664 1665 1666 |
# File 'lib/aws-sdk-inspector2/types.rb', line 1659 class CodeFilePath < Struct.new( :end_line, :file_name, :file_path, :start_line) SENSITIVE = [] include Aws::Structure end |
#file_path ⇒ String
The file path to the code that a vulnerability was found in.
1659 1660 1661 1662 1663 1664 1665 1666 |
# File 'lib/aws-sdk-inspector2/types.rb', line 1659 class CodeFilePath < Struct.new( :end_line, :file_name, :file_path, :start_line) SENSITIVE = [] include Aws::Structure end |
#start_line ⇒ Integer
The line number of the first line of code that a vulnerability was found in.
1659 1660 1661 1662 1663 1664 1665 1666 |
# File 'lib/aws-sdk-inspector2/types.rb', line 1659 class CodeFilePath < Struct.new( :end_line, :file_name, :file_path, :start_line) SENSITIVE = [] include Aws::Structure end |