Class: Aws::Inspector2::Types::Cvss2

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

Overview

The Common Vulnerability Scoring System (CVSS) version 2 details for the vulnerability.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#base_scoreFloat

The CVSS v2 base score for the vulnerability.

Returns:

  • (Float)


2296
2297
2298
2299
2300
2301
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 2296

class Cvss2 < Struct.new(
  :base_score,
  :scoring_vector)
  SENSITIVE = []
  include Aws::Structure
end

#scoring_vectorString

The scoring vector associated with the CVSS v2 score.

Returns:

  • (String)


2296
2297
2298
2299
2300
2301
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 2296

class Cvss2 < Struct.new(
  :base_score,
  :scoring_vector)
  SENSITIVE = []
  include Aws::Structure
end