Class: Aws::SecurityHub::Types::CodeVulnerabilitiesFilePath
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::CodeVulnerabilitiesFilePath
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
Provides details about 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 in which the vulnerability is located.
-
#file_name ⇒ String
The name of the file in which the code vulnerability is located.
-
#file_path ⇒ String
The file path to the code in which the vulnerability is located.
-
#start_line ⇒ Integer
The line number of the first line of code in which the vulnerability is located.
Instance Attribute Details
#end_line ⇒ Integer
The line number of the last line of code in which the vulnerability is located.
23102 23103 23104 23105 23106 23107 23108 23109 |
# File 'lib/aws-sdk-securityhub/types.rb', line 23102 class CodeVulnerabilitiesFilePath < Struct.new( :end_line, :file_name, :file_path, :start_line) SENSITIVE = [] include Aws::Structure end |
#file_name ⇒ String
The name of the file in which the code vulnerability is located.
23102 23103 23104 23105 23106 23107 23108 23109 |
# File 'lib/aws-sdk-securityhub/types.rb', line 23102 class CodeVulnerabilitiesFilePath < Struct.new( :end_line, :file_name, :file_path, :start_line) SENSITIVE = [] include Aws::Structure end |
#file_path ⇒ String
The file path to the code in which the vulnerability is located.
23102 23103 23104 23105 23106 23107 23108 23109 |
# File 'lib/aws-sdk-securityhub/types.rb', line 23102 class CodeVulnerabilitiesFilePath < 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 in which the vulnerability is located.
23102 23103 23104 23105 23106 23107 23108 23109 |
# File 'lib/aws-sdk-securityhub/types.rb', line 23102 class CodeVulnerabilitiesFilePath < Struct.new( :end_line, :file_name, :file_path, :start_line) SENSITIVE = [] include Aws::Structure end |