Class: Aws::Imagebuilder::Types::SeverityCounts

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#allInteger

The total number of findings across all severity levels for the specified filter.

Returns:

  • (Integer)


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

#criticalInteger

The number of critical severity findings for the specified filter.

Returns:

  • (Integer)


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

#highInteger

The number of high severity findings for the specified filter.

Returns:

  • (Integer)


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

#mediumInteger

The number of medium severity findings for the specified filter.

Returns:

  • (Integer)


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