Class: Aws::SSM::Types::DescribeInstancePatchesResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::DescribeInstancePatchesResult
- Includes:
- Aws::Structure
- Defined in:
- 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.
5440 5441 5442 5443 5444 5445 |
# File 'lib/aws-sdk-ssm/types.rb', line 5440 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)
5440 5441 5442 5443 5444 5445 |
# File 'lib/aws-sdk-ssm/types.rb', line 5440 class DescribeInstancePatchesResult < Struct.new( :patches, :next_token) SENSITIVE = [] include Aws::Structure end |