Describe Instance Patches
| ssm_describe_instance_patches | R Documentation |
Retrieves information about the patches on the specified managed node and their state relative to the patch baseline being used for the node¶
Description¶
Retrieves information about the patches on the specified managed node and their state relative to the patch baseline being used for the node.
Usage¶
Arguments¶
InstanceId[required] The ID of the managed node whose patch state information should be retrieved.
FiltersEach element in the array is a structure containing a key-value pair.
Supported keys for
describe_instance_patchesinclude the following:ClassificationSample values:
Security|SecurityUpdatesKBIdSample values:
KB4480056|java-1.7.0-openjdk.x86_64SeveritySample values:
Important|Medium|LowStateSample values:
Installed|InstalledOther|InstalledPendingRebootFor lists of all
Statevalues, see Understanding patch compliance state values in the Amazon Web Services Systems Manager User Guide.
NextTokenThe token for the next set of items to return. (You received this token from a previous call.)
MaxResultsThe maximum number of patches to return (per page).
Value¶
A list with the following syntax:
list(
Patches = list(
list(
Title = "string",
KBId = "string",
Classification = "string",
Severity = "string",
State = "INSTALLED"|"INSTALLED_OTHER"|"INSTALLED_PENDING_REBOOT"|"INSTALLED_REJECTED"|"MISSING"|"NOT_APPLICABLE"|"FAILED",
InstalledTime = as.POSIXct(
"2015-01-01"
),
CVEIds = "string"
)
),
NextToken = "string"
)