Class: Aws::Inspector2::Types::SeverityCounts
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector2::Types::SeverityCounts
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-inspector2/types.rb
Overview
An object that contains the counts of aggregated finding per severity.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#all ⇒ Integer
The total count of findings from all severities.
-
#critical ⇒ Integer
The total count of critical severity findings.
-
#high ⇒ Integer
The total count of high severity findings.
-
#medium ⇒ Integer
The total count of medium severity findings.
Instance Attribute Details
#all ⇒ Integer
The total count of findings from all severities.
6484 6485 6486 6487 6488 6489 6490 6491 |
# File 'lib/aws-sdk-inspector2/types.rb', line 6484 class SeverityCounts < Struct.new( :all, :critical, :high, :medium) SENSITIVE = [] include Aws::Structure end |
#critical ⇒ Integer
The total count of critical severity findings.
6484 6485 6486 6487 6488 6489 6490 6491 |
# File 'lib/aws-sdk-inspector2/types.rb', line 6484 class SeverityCounts < Struct.new( :all, :critical, :high, :medium) SENSITIVE = [] include Aws::Structure end |
#high ⇒ Integer
The total count of high severity findings.
6484 6485 6486 6487 6488 6489 6490 6491 |
# File 'lib/aws-sdk-inspector2/types.rb', line 6484 class SeverityCounts < Struct.new( :all, :critical, :high, :medium) SENSITIVE = [] include Aws::Structure end |
#medium ⇒ Integer
The total count of medium severity findings.
6484 6485 6486 6487 6488 6489 6490 6491 |
# File 'lib/aws-sdk-inspector2/types.rb', line 6484 class SeverityCounts < Struct.new( :all, :critical, :high, :medium) SENSITIVE = [] include Aws::Structure end |