Class: Aws::ConfigService::Types::ConformancePackComplianceScore
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::ConformancePackComplianceScore
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
A compliance score is the percentage of the number of compliant rule-resource combinations in a conformance pack compared to the number of total possible rule-resource combinations in the conformance pack. This metric provides you with a high-level view of the compliance state of your conformance packs. You can use it to identify, investigate, and understand the level of compliance in your conformance packs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#conformance_pack_name ⇒ String
The name of the conformance pack.
-
#last_updated_time ⇒ Time
The time that the conformance pack compliance score was last updated.
-
#score ⇒ String
Compliance score for the conformance pack.
Instance Attribute Details
#conformance_pack_name ⇒ String
The name of the conformance pack.
1657 1658 1659 1660 1661 1662 1663 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1657 class ConformancePackComplianceScore < Struct.new( :score, :conformance_pack_name, :last_updated_time) SENSITIVE = [] include Aws::Structure end |
#last_updated_time ⇒ Time
The time that the conformance pack compliance score was last updated.
1657 1658 1659 1660 1661 1662 1663 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1657 class ConformancePackComplianceScore < Struct.new( :score, :conformance_pack_name, :last_updated_time) SENSITIVE = [] include Aws::Structure end |
#score ⇒ String
Compliance score for the conformance pack. Conformance packs with no
evaluation results will have a compliance score of
INSUFFICIENT_DATA
.
1657 1658 1659 1660 1661 1662 1663 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 1657 class ConformancePackComplianceScore < Struct.new( :score, :conformance_pack_name, :last_updated_time) SENSITIVE = [] include Aws::Structure end |