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.
1923 1924 1925 1926 1927 1928 1929 1930 |
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 1923 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.
1923 1924 1925 1926 1927 1928 1929 1930 |
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 1923 class CvssScore < Struct.new( :base_score, :scoring_vector, :version, :source) SENSITIVE = [] include Aws::Structure end |
#source ⇒ String
The source of the CVSS score.
1923 1924 1925 1926 1927 1928 1929 1930 |
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 1923 class CvssScore < Struct.new( :base_score, :scoring_vector, :version, :source) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
The CVSS version that generated the score.
1923 1924 1925 1926 1927 1928 1929 1930 |
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 1923 class CvssScore < Struct.new( :base_score, :scoring_vector, :version, :source) SENSITIVE = [] include Aws::Structure end |