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

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 3 details for the vulnerability.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#base_scoreFloat

The CVSS v3 base score for the vulnerability.

Returns:

  • (Float)


2316
2317
2318
2319
2320
2321
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 2316

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

#scoring_vectorString

The scoring vector associated with the CVSS v3 score.

Returns:

  • (String)


2316
2317
2318
2319
2320
2321
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 2316

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