Describe Patch Baselines
ssm_describe_patch_baselines | R Documentation |
Lists the patch baselines in your Amazon Web Services account¶
Description¶
Lists the patch baselines in your Amazon Web Services account.
Usage¶
ssm_describe_patch_baselines(Filters, MaxResults, NextToken)
Arguments¶
Filters |
Each element in the array is a structure containing a key-value pair. Supported keys for
|
MaxResults |
The maximum number of patch baselines 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(
BaselineIdentities = list(
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"
)
Request syntax¶
svc$describe_patch_baselines(
Filters = list(
list(
Key = "string",
Values = list(
"string"
)
)
),
MaxResults = 123,
NextToken = "string"
)