Class: Aws::SecurityHub::Types::CodeVulnerabilitiesFilePath

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#end_lineInteger

The line number of the last line of code in which the vulnerability is located.

Returns:

  • (Integer)


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_nameString

The name of the file in which the code vulnerability is located.

Returns:

  • (String)


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_pathString

The file path to the code in which the vulnerability is located.

Returns:

  • (String)


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_lineInteger

The line number of the first line of code in which the vulnerability is located.

Returns:

  • (Integer)


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