Class: Aws::SSM::Types::ComplianceSummaryItem

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

Instance Attribute Details

#compliance_typeString

The type of compliance item. For example, the compliance type can be Association, Patch, or Custom:string.

Returns:

  • (String)


2647
2648
2649
2650
2651
2652
2653
# File 'lib/aws-sdk-ssm/types.rb', line 2647

class ComplianceSummaryItem < Struct.new(
  :compliance_type,
  :compliant_summary,
  :non_compliant_summary)
  SENSITIVE = []
  include Aws::Structure
end

#compliant_summaryTypes::CompliantSummary

A list of COMPLIANT items for the specified compliance type.



2647
2648
2649
2650
2651
2652
2653
# File 'lib/aws-sdk-ssm/types.rb', line 2647

class ComplianceSummaryItem < Struct.new(
  :compliance_type,
  :compliant_summary,
  :non_compliant_summary)
  SENSITIVE = []
  include Aws::Structure
end

#non_compliant_summaryTypes::NonCompliantSummary

A list of NON_COMPLIANT items for the specified compliance type.



2647
2648
2649
2650
2651
2652
2653
# File 'lib/aws-sdk-ssm/types.rb', line 2647

class ComplianceSummaryItem < Struct.new(
  :compliance_type,
  :compliant_summary,
  :non_compliant_summary)
  SENSITIVE = []
  include Aws::Structure
end