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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-imagebuilder/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)


7334
7335
7336
7337
7338
7339
7340
7341
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 7334

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)


7334
7335
7336
7337
7338
7339
7340
7341
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 7334

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)


7334
7335
7336
7337
7338
7339
7340
7341
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 7334

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)


7334
7335
7336
7337
7338
7339
7340
7341
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 7334

class SeverityCounts < Struct.new(
  :all,
  :critical,
  :high,
  :medium)
  SENSITIVE = []
  include Aws::Structure
end