Describe Patch Groups
| ssm_describe_patch_groups | R Documentation |
Lists all patch groups that have been registered with patch baselines¶
Description¶
Lists all patch groups that have been registered with patch baselines.
Usage¶
Arguments¶
MaxResultsThe maximum number of patch groups to return (per page).
FiltersEach element in the array is a structure containing a key-value pair.
Supported keys for
describe_patch_groupsinclude the following:NAME_PREFIXSample values:
AWS-|My-.OPERATING_SYSTEMSample values:
AMAZON_LINUX|SUSE|WINDOWS
NextTokenThe 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(
Mappings = list(
list(
PatchGroup = "string",
BaselineIdentity = list(
BaselineId = "string",
BaselineName = "string",
OperatingSystem = "WINDOWS"|"AMAZON_LINUX"|"AMAZON_LINUX_2"|"AMAZON_LINUX_2022"|"UBUNTU"|"REDHAT_ENTERPRISE_LINUX"|"SUSE"|"CENTOS"|"ORACLE_LINUX"|"DEBIAN"|"MACOS"|"RASPBIAN"|"ROCKY_LINUX"|"ALMA_LINUX"|"AMAZON_LINUX_2023",
BaselineDescription = "string",
DefaultBaseline = TRUE|FALSE
)
)
),
NextToken = "string"
)