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.
7407 7408 7409 7410 7411 7412 7413 7414 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 7407 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.
7407 7408 7409 7410 7411 7412 7413 7414 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 7407 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.
7407 7408 7409 7410 7411 7412 7413 7414 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 7407 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.
7407 7408 7409 7410 7411 7412 7413 7414 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 7407 class SeverityCounts < Struct.new( :all, :critical, :high, :medium) SENSITIVE = [] include Aws::Structure end |