Class: Aws::Inspector2::Types::Cvss4
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector2::Types::Cvss4
- Defined in:
- gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb
Overview
The Common Vulnerability Scoring System (CVSS) version 4 details for the vulnerability.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#base_score ⇒ Float
The base CVSS v4 score for the vulnerability finding, which rates the severity of the vulnerability on a scale from 0 to 10.
-
#scoring_vector ⇒ String
The CVSS v4 scoring vector, which contains the metrics and measurements that were used to calculate the base score.
Instance Attribute Details
#base_score ⇒ Float
The base CVSS v4 score for the vulnerability finding, which rates the severity of the vulnerability on a scale from 0 to 10.
3207 3208 3209 3210 3211 3212 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 3207 class Cvss4 < Struct.new( :base_score, :scoring_vector) SENSITIVE = [] include Aws::Structure end |
#scoring_vector ⇒ String
The CVSS v4 scoring vector, which contains the metrics and measurements that were used to calculate the base score.
3207 3208 3209 3210 3211 3212 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 3207 class Cvss4 < Struct.new( :base_score, :scoring_vector) SENSITIVE = [] include Aws::Structure end |