Lists the patch baselines in your AWS account.
ssm_describe_patch_baselines(Filters, MaxResults, NextToken)
A list with the following syntax:
list(
BaselineIdentities = list(
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"
)
Each element in the array is a structure containing:
Key: (string, "NAME_PREFIX" or "OWNER")
Value: (array of strings, exactly 1 entry, between 1 and 255 characters)
The maximum number of patch baselines to return (per page).
The token for the next set of items to return. (You received this token from a previous call.)
svc$describe_patch_baselines(
Filters = list(
list(
Key = "string",
Values = list(
"string"
)
)
),
MaxResults = 123,
NextToken = "string"
)