Class: Aws::Imagebuilder::Types::CvssScore
- Inherits:
-
Struct
- Object
- Struct
- Aws::Imagebuilder::Types::CvssScore
- Defined in:
- gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb
Overview
Amazon Inspector generates a risk score for each finding. This score helps you to prioritize findings, to focus on the most critical findings and the most vulnerable resources. The score uses the Common Vulnerability Scoring System (CVSS) format. This format is a modification of the base CVSS score that the National Vulnerability Database (NVD) provides. For more information about severity levels, see Severity levels for Amazon Inspector findings in the Amazon Inspector User Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#base_score ⇒ Float
The CVSS base score.
-
#scoring_vector ⇒ String
The vector string of the CVSS score.
-
#source ⇒ String
The source of the CVSS score.
-
#version ⇒ String
The CVSS version that generated the score.
Instance Attribute Details
#base_score ⇒ Float
The CVSS base score.
1959 1960 1961 1962 1963 1964 1965 1966 |
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 1959 class CvssScore < Struct.new( :base_score, :scoring_vector, :version, :source) SENSITIVE = [] include Aws::Structure end |
#scoring_vector ⇒ String
The vector string of the CVSS score.
1959 1960 1961 1962 1963 1964 1965 1966 |
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 1959 class CvssScore < Struct.new( :base_score, :scoring_vector, :version, :source) SENSITIVE = [] include Aws::Structure end |
#source ⇒ String
The source of the CVSS score.
1959 1960 1961 1962 1963 1964 1965 1966 |
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 1959 class CvssScore < Struct.new( :base_score, :scoring_vector, :version, :source) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
The CVSS version that generated the score.
1959 1960 1961 1962 1963 1964 1965 1966 |
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 1959 class CvssScore < Struct.new( :base_score, :scoring_vector, :version, :source) SENSITIVE = [] include Aws::Structure end |