Class: Aws::Imagebuilder::Types::SeverityCounts
- Inherits:
-
Struct
- Object
- Struct
- Aws::Imagebuilder::Types::SeverityCounts
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-imagebuilder/types.rb
Overview
Includes counts by severity level for medium severity and higher level findings, plus a total for all of the findings for the specified filter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#all ⇒ Integer
The total number of findings across all severity levels for the specified filter.
-
#critical ⇒ Integer
The number of critical severity findings for the specified filter.
-
#high ⇒ Integer
The number of high severity findings for the specified filter.
-
#medium ⇒ Integer
The number of medium severity findings for the specified filter.
Instance Attribute Details
#all ⇒ Integer
The total number of findings across all severity levels for the specified filter.
7496 7497 7498 7499 7500 7501 7502 7503 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 7496 class SeverityCounts < Struct.new( :all, :critical, :high, :medium) SENSITIVE = [] include Aws::Structure end |
#critical ⇒ Integer
The number of critical severity findings for the specified filter.
7496 7497 7498 7499 7500 7501 7502 7503 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 7496 class SeverityCounts < Struct.new( :all, :critical, :high, :medium) SENSITIVE = [] include Aws::Structure end |
#high ⇒ Integer
The number of high severity findings for the specified filter.
7496 7497 7498 7499 7500 7501 7502 7503 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 7496 class SeverityCounts < Struct.new( :all, :critical, :high, :medium) SENSITIVE = [] include Aws::Structure end |
#medium ⇒ Integer
The number of medium severity findings for the specified filter.
7496 7497 7498 7499 7500 7501 7502 7503 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 7496 class SeverityCounts < Struct.new( :all, :critical, :high, :medium) SENSITIVE = [] include Aws::Structure end |