Class: Aws::SSM::Types::ComplianceItemEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::ComplianceItemEntry
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
Information about a compliance item.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#details ⇒ Hash<String,String>
A “Key”: “Value” tag combination for the compliance item.
-
#id ⇒ String
The compliance item ID.
-
#severity ⇒ String
The severity of the compliance status.
-
#status ⇒ String
The status of the compliance item.
-
#title ⇒ String
The title of the compliance item.
Instance Attribute Details
#details ⇒ Hash<String,String>
A “Key”: “Value” tag combination for the compliance item.
2604 2605 2606 2607 2608 2609 2610 2611 2612 |
# File 'lib/aws-sdk-ssm/types.rb', line 2604 class ComplianceItemEntry < Struct.new( :id, :title, :severity, :status, :details) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The compliance item ID. For example, if the compliance item is a Windows patch, the ID could be the number of the KB article.
2604 2605 2606 2607 2608 2609 2610 2611 2612 |
# File 'lib/aws-sdk-ssm/types.rb', line 2604 class ComplianceItemEntry < Struct.new( :id, :title, :severity, :status, :details) SENSITIVE = [] include Aws::Structure end |
#severity ⇒ String
The severity of the compliance status. Severity can be one of the following: Critical, High, Medium, Low, Informational, Unspecified.
2604 2605 2606 2607 2608 2609 2610 2611 2612 |
# File 'lib/aws-sdk-ssm/types.rb', line 2604 class ComplianceItemEntry < Struct.new( :id, :title, :severity, :status, :details) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the compliance item. An item is either COMPLIANT or NON_COMPLIANT.
2604 2605 2606 2607 2608 2609 2610 2611 2612 |
# File 'lib/aws-sdk-ssm/types.rb', line 2604 class ComplianceItemEntry < Struct.new( :id, :title, :severity, :status, :details) SENSITIVE = [] include Aws::Structure end |
#title ⇒ String
The title of the compliance item. For example, if the compliance item is a Windows patch, the title could be the title of the KB article for the patch; for example: Security Update for Active Directory Federation Services.
2604 2605 2606 2607 2608 2609 2610 2611 2612 |
# File 'lib/aws-sdk-ssm/types.rb', line 2604 class ComplianceItemEntry < Struct.new( :id, :title, :severity, :status, :details) SENSITIVE = [] include Aws::Structure end |