Class: Aws::SecurityHub::Types::Cvss
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::Cvss
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass Cvss data as a hash:
{
version: "NonEmptyString",
base_score: 1.0,
base_vector: "NonEmptyString",
}
CVSS scores from the advisory related to the vulnerability.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#base_score ⇒ Float
The base CVSS score.
-
#base_vector ⇒ String
The base scoring vector for the CVSS score.
-
#version ⇒ String
The version of CVSS for the CVSS score.
Instance Attribute Details
#base_score ⇒ Float
The base CVSS score.
17396 17397 17398 17399 17400 17401 17402 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 17396 class Cvss < Struct.new( :version, :base_score, :base_vector) SENSITIVE = [] include Aws::Structure end |