Class: Aws::SSM::Types::DescribeInstancePatchesResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::DescribeInstancePatchesResult
- Defined in:
- gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The token to use when requesting the next set of items.
-
#patches ⇒ Array<Types::PatchComplianceData>
Each entry in the array is a structure containing:.
Instance Attribute Details
#next_token ⇒ String
The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.
5543 5544 5545 5546 5547 5548 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 5543 class DescribeInstancePatchesResult < Struct.new( :patches, :next_token) SENSITIVE = [] include Aws::Structure end |
#patches ⇒ Array<Types::PatchComplianceData>
Each entry in the array is a structure containing:
Title (string)
KBId (string)
Classification (string)
Severity (string)
State (string, such as "INSTALLED" or "FAILED")
InstalledTime (DateTime)
InstalledBy (string)
5543 5544 5545 5546 5547 5548 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 5543 class DescribeInstancePatchesResult < Struct.new( :patches, :next_token) SENSITIVE = [] include Aws::Structure end |