Class: Aws::Imagebuilder::Types::AccountAggregation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Imagebuilder::Types::AccountAggregation
- 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
-
#account_id ⇒ String
Identifies the account that owns the aggregated resource findings.
-
#severity_counts ⇒ Types::SeverityCounts
Counts by severity level for medium severity and higher level findings, plus a total for all of the findings.
Instance Attribute Details
#account_id ⇒ String
Identifies the account that owns the aggregated resource 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 |
#severity_counts ⇒ Types::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 |