Class: Aws::Imagebuilder::Types::AccountAggregation

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb

Overview

Contains counts of vulnerability findings from image scans that run when you create new Image Builder images, or build new versions of existing images. The vulnerability counts are grouped by severity level. The counts are aggregated across resources to create the final tally for the account that owns them.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#account_idString

Identifies the account that owns the aggregated resource findings.

Returns:

  • (String)


30
31
32
33
34
35
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 30

class AccountAggregation < Struct.new(
  :account_id,
  :severity_counts)
  SENSITIVE = []
  include Aws::Structure
end

#severity_countsTypes::SeverityCounts

Counts by severity level for medium severity and higher level findings, plus a total for all of the findings.



30
31
32
33
34
35
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 30

class AccountAggregation < Struct.new(
  :account_id,
  :severity_counts)
  SENSITIVE = []
  include Aws::Structure
end