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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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:



1741
1742
1743
1744
1745
1746
1747
1748
1749
# File 'lib/aws-sdk-inspector2/types.rb', line 1741

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

#end_lineInteger

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

Returns:

  • (Integer)


1741
1742
1743
1744
1745
1746
1747
1748
1749
# File 'lib/aws-sdk-inspector2/types.rb', line 1741

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

#finding_arnString

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

Returns:

  • (String)


1741
1742
1743
1744
1745
1746
1747
1748
1749
# File 'lib/aws-sdk-inspector2/types.rb', line 1741

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

#start_lineInteger

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

Returns:

  • (Integer)


1741
1742
1743
1744
1745
1746
1747
1748
1749
# File 'lib/aws-sdk-inspector2/types.rb', line 1741

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

#suggested_fixesArray<Types::SuggestedFix>

Details of a suggested code fix.

Returns:



1741
1742
1743
1744
1745
1746
1747
1748
1749
# File 'lib/aws-sdk-inspector2/types.rb', line 1741

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