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.
8039 8040 8041 8042 8043 8044 8045 8046 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 8039 class SeverityCounts < Struct.new( :all, :medium, :high, :critical) SENSITIVE = [] include Aws::Structure end |
#critical ⇒ Integer
The total count of critical severity findings.
8039 8040 8041 8042 8043 8044 8045 8046 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 8039 class SeverityCounts < Struct.new( :all, :medium, :high, :critical) SENSITIVE = [] include Aws::Structure end |
#high ⇒ Integer
The total count of high severity findings.
8039 8040 8041 8042 8043 8044 8045 8046 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 8039 class SeverityCounts < Struct.new( :all, :medium, :high, :critical) SENSITIVE = [] include Aws::Structure end |
#medium ⇒ Integer
The total count of medium severity findings.
8039 8040 8041 8042 8043 8044 8045 8046 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 8039 class SeverityCounts < Struct.new( :all, :medium, :high, :critical) SENSITIVE = [] include Aws::Structure end |