Class: Aws::Inspector2::Types::SeverityCounts

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

Instance Attribute Details

#allInteger

The total count of findings from all severities.

Returns:

  • (Integer)


6458
6459
6460
6461
6462
6463
6464
6465
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 6458

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

#criticalInteger

The total count of critical severity findings.

Returns:

  • (Integer)


6458
6459
6460
6461
6462
6463
6464
6465
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 6458

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

#highInteger

The total count of high severity findings.

Returns:

  • (Integer)


6458
6459
6460
6461
6462
6463
6464
6465
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 6458

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

#mediumInteger

The total count of medium severity findings.

Returns:

  • (Integer)


6458
6459
6460
6461
6462
6463
6464
6465
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 6458

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