Lists all patch groups that have been registered with patch baselines.
ssm_describe_patch_groups(MaxResults, Filters, NextToken)The maximum number of patch groups to return (per page).
One or more filters. Use a filter to return a more specific list of results.
For describe_patch_groups,valid filter
keys include the following:
NAME_PREFIX: The name of the patch group. Wildcards (*) are
accepted.
OPERATING_SYSTEM: The supported operating system type to return
results for. For valid operating system values, see
GetDefaultPatchBaselineRequest$OperatingSystem in
create_patch_baseline.
Examples:
--filters Key=NAME_PREFIX,Values=MyPatchGroup*
--filters Key=OPERATING_SYSTEM,Values=AMAZON_LINUX_2
The token for the next set of items to return. (You received this token from a previous call.)
A list with the following syntax:
list(
Mappings = list(
list(
PatchGroup = "string",
BaselineIdentity = list(
BaselineId = "string",
BaselineName = "string",
OperatingSystem = "WINDOWS"|"AMAZON_LINUX"|"AMAZON_LINUX_2"|"UBUNTU"|"REDHAT_ENTERPRISE_LINUX"|"SUSE"|"CENTOS"|"ORACLE_LINUX"|"DEBIAN"|"MACOS",
BaselineDescription = "string",
DefaultBaseline = TRUE|FALSE
)
)
),
NextToken = "string"
)
svc$describe_patch_groups(
MaxResults = 123,
Filters = list(
list(
Key = "string",
Values = list(
"string"
)
)
),
NextToken = "string"
)