Class: Aws::SSM::Types::ComplianceSummaryItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::ComplianceSummaryItem
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
A summary of compliance information by compliance type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compliance_type ⇒ String
The type of compliance item.
-
#compliant_summary ⇒ Types::CompliantSummary
A list of COMPLIANT items for the specified compliance type.
-
#non_compliant_summary ⇒ Types::NonCompliantSummary
A list of NON_COMPLIANT items for the specified compliance type.
Instance Attribute Details
#compliance_type ⇒ String
The type of compliance item. For example, the compliance type can be Association, Patch, or Custom:string.
2657 2658 2659 2660 2661 2662 2663 |
# File 'lib/aws-sdk-ssm/types.rb', line 2657 class ComplianceSummaryItem < Struct.new( :compliance_type, :compliant_summary, :non_compliant_summary) SENSITIVE = [] include Aws::Structure end |
#compliant_summary ⇒ Types::CompliantSummary
A list of COMPLIANT items for the specified compliance type.
2657 2658 2659 2660 2661 2662 2663 |
# File 'lib/aws-sdk-ssm/types.rb', line 2657 class ComplianceSummaryItem < Struct.new( :compliance_type, :compliant_summary, :non_compliant_summary) SENSITIVE = [] include Aws::Structure end |
#non_compliant_summary ⇒ Types::NonCompliantSummary
A list of NON_COMPLIANT items for the specified compliance type.
2657 2658 2659 2660 2661 2662 2663 |
# File 'lib/aws-sdk-ssm/types.rb', line 2657 class ComplianceSummaryItem < Struct.new( :compliance_type, :compliant_summary, :non_compliant_summary) SENSITIVE = [] include Aws::Structure end |