Class: Aws::Inspector2::Types::SeverityCounts
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector2::Types::SeverityCounts
- Defined in:
- gems/aws-sdk-inspector2/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.
8045 8046 8047 8048 8049 8050 8051 8052 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 8045 class SeverityCounts < Struct.new( :all, :medium, :high, :critical) SENSITIVE = [] include Aws::Structure end |
#critical ⇒ Integer
The total count of critical severity findings.
8045 8046 8047 8048 8049 8050 8051 8052 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 8045 class SeverityCounts < Struct.new( :all, :medium, :high, :critical) SENSITIVE = [] include Aws::Structure end |
#high ⇒ Integer
The total count of high severity findings.
8045 8046 8047 8048 8049 8050 8051 8052 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 8045 class SeverityCounts < Struct.new( :all, :medium, :high, :critical) SENSITIVE = [] include Aws::Structure end |
#medium ⇒ Integer
The total count of medium severity findings.
8045 8046 8047 8048 8049 8050 8051 8052 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 8045 class SeverityCounts < Struct.new( :all, :medium, :high, :critical) SENSITIVE = [] include Aws::Structure end |