Class: Aws::Inspector2::Types::Cvss3

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

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#base_score ⇒ Float

The CVSS v3 base score for the vulnerability.

Returns:

  • (Float)


4070
4071
4072
4073
4074
4075
# File 'lib/aws-sdk-inspector2/types.rb', line 4070

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

#scoring_vector ⇒ String

The scoring vector associated with the CVSS v3 score.

Returns:

  • (String)


4070
4071
4072
4073
4074
4075
# File 'lib/aws-sdk-inspector2/types.rb', line 4070

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