Describe Patch Group State
ssm_describe_patch_group_state | R Documentation |
Returns high-level aggregated patch compliance state information for a patch group¶
Description¶
Returns high-level aggregated patch compliance state information for a patch group.
Usage¶
Arguments¶
PatchGroup
[required] The name of the patch group whose patch snapshot should be retrieved.
Value¶
A list with the following syntax:
list(
Instances = 123,
InstancesWithInstalledPatches = 123,
InstancesWithInstalledOtherPatches = 123,
InstancesWithInstalledPendingRebootPatches = 123,
InstancesWithInstalledRejectedPatches = 123,
InstancesWithMissingPatches = 123,
InstancesWithFailedPatches = 123,
InstancesWithNotApplicablePatches = 123,
InstancesWithUnreportedNotApplicablePatches = 123,
InstancesWithCriticalNonCompliantPatches = 123,
InstancesWithSecurityNonCompliantPatches = 123,
InstancesWithOtherNonCompliantPatches = 123
)