Class: Aws::Inspector2::Types::CodeSnippetResult

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb

Overview

Contains information on a code snippet retrieved by Amazon Inspector from a code vulnerability finding.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#code_snippetArray<Types::CodeLine>

Contains information on the retrieved code snippet.

Returns:



2385
2386
2387
2388
2389
2390
2391
2392
2393
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 2385

class CodeSnippetResult < Struct.new(
  :finding_arn,
  :start_line,
  :end_line,
  :code_snippet,
  :suggested_fixes)
  SENSITIVE = []
  include Aws::Structure
end

#end_lineInteger

The line number of the last line of a code snippet.

Returns:

  • (Integer)


2385
2386
2387
2388
2389
2390
2391
2392
2393
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 2385

class CodeSnippetResult < Struct.new(
  :finding_arn,
  :start_line,
  :end_line,
  :code_snippet,
  :suggested_fixes)
  SENSITIVE = []
  include Aws::Structure
end

#finding_arnString

The ARN of a finding that the code snippet is associated with.

Returns:

  • (String)


2385
2386
2387
2388
2389
2390
2391
2392
2393
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 2385

class CodeSnippetResult < Struct.new(
  :finding_arn,
  :start_line,
  :end_line,
  :code_snippet,
  :suggested_fixes)
  SENSITIVE = []
  include Aws::Structure
end

#start_lineInteger

The line number of the first line of a code snippet.

Returns:

  • (Integer)


2385
2386
2387
2388
2389
2390
2391
2392
2393
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 2385

class CodeSnippetResult < Struct.new(
  :finding_arn,
  :start_line,
  :end_line,
  :code_snippet,
  :suggested_fixes)
  SENSITIVE = []
  include Aws::Structure
end

#suggested_fixesArray<Types::SuggestedFix>

Details of a suggested code fix.

Returns:



2385
2386
2387
2388
2389
2390
2391
2392
2393
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 2385

class CodeSnippetResult < Struct.new(
  :finding_arn,
  :start_line,
  :end_line,
  :code_snippet,
  :suggested_fixes)
  SENSITIVE = []
  include Aws::Structure
end