Class: Aws::CodeGuruSecurity::Types::FilePath
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruSecurity::Types::FilePath
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codegurusecurity/types.rb
Overview
Information about the location of security vulnerabilities that Amazon CodeGuru Security detected in your code.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code_snippet ⇒ Array<Types::CodeLine>
A list of ‘CodeLine` objects that describe where the security vulnerability appears in your code.
-
#end_line ⇒ Integer
The last line number of the code snippet where the security vulnerability appears in your code.
-
#name ⇒ String
The name of the file.
-
#path ⇒ String
The path to the resource with the security vulnerability.
-
#start_line ⇒ Integer
The first line number of the code snippet where the security vulnerability appears in your code.
Instance Attribute Details
#code_snippet ⇒ Array<Types::CodeLine>
A list of ‘CodeLine` objects that describe where the security vulnerability appears in your code.
392 393 394 395 396 397 398 399 400 |
# File 'lib/aws-sdk-codegurusecurity/types.rb', line 392 class FilePath < Struct.new( :code_snippet, :end_line, :name, :path, :start_line) SENSITIVE = [] include Aws::Structure end |
#end_line ⇒ Integer
The last line number of the code snippet where the security vulnerability appears in your code.
392 393 394 395 396 397 398 399 400 |
# File 'lib/aws-sdk-codegurusecurity/types.rb', line 392 class FilePath < Struct.new( :code_snippet, :end_line, :name, :path, :start_line) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the file.
392 393 394 395 396 397 398 399 400 |
# File 'lib/aws-sdk-codegurusecurity/types.rb', line 392 class FilePath < Struct.new( :code_snippet, :end_line, :name, :path, :start_line) SENSITIVE = [] include Aws::Structure end |
#path ⇒ String
The path to the resource with the security vulnerability.
392 393 394 395 396 397 398 399 400 |
# File 'lib/aws-sdk-codegurusecurity/types.rb', line 392 class FilePath < Struct.new( :code_snippet, :end_line, :name, :path, :start_line) SENSITIVE = [] include Aws::Structure end |
#start_line ⇒ Integer
The first line number of the code snippet where the security vulnerability appears in your code.
392 393 394 395 396 397 398 399 400 |
# File 'lib/aws-sdk-codegurusecurity/types.rb', line 392 class FilePath < Struct.new( :code_snippet, :end_line, :name, :path, :start_line) SENSITIVE = [] include Aws::Structure end |