Describe Available Patches
ssm_describe_available_patches | R Documentation |
Lists all patches eligible to be included in a patch baseline¶
Description¶
Lists all patches eligible to be included in a patch baseline.
Currently, describe_available_patches
supports only the Amazon Linux
1, Amazon Linux 2, and Windows Server operating systems.
Usage¶
ssm_describe_available_patches(Filters, MaxResults, NextToken)
Arguments¶
Filters |
Each element in the array is a structure containing a key-value pair. Windows Server Supported keys for Windows Server managed node patches include the following:
Linux When specifying filters for Linux patches, you must specify a
key-pair for
However, the following command succeeds:
Supported keys for Linux managed node patches include the following:
|
MaxResults |
The maximum number of patches to return (per page). |
NextToken |
The token for the next set of items to return. (You received this token from a previous call.) |
Value¶
A list with the following syntax:
list(
Patches = list(
list(
Id = "string",
ReleaseDate = as.POSIXct(
"2015-01-01"
),
Title = "string",
Description = "string",
ContentUrl = "string",
Vendor = "string",
ProductFamily = "string",
Product = "string",
Classification = "string",
MsrcSeverity = "string",
KbNumber = "string",
MsrcNumber = "string",
Language = "string",
AdvisoryIds = list(
"string"
),
BugzillaIds = list(
"string"
),
CVEIds = list(
"string"
),
Name = "string",
Epoch = 123,
Version = "string",
Release = "string",
Arch = "string",
Severity = "string",
Repository = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_available_patches(
Filters = list(
list(
Key = "string",
Values = list(
"string"
)
)
),
MaxResults = 123,
NextToken = "string"
)