Retrieves the current effective patches (the patch and the approval state) for the specified patch baseline. Note that this API applies only to Windows patch baselines.
ssm_describe_effective_patches_for_patch_baseline(BaselineId,
MaxResults, NextToken)
A list with the following syntax:
list(
EffectivePatches = list(
list(
Patch = 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"
),
PatchStatus = list(
DeploymentStatus = "APPROVED"|"PENDING_APPROVAL"|"EXPLICIT_APPROVED"|"EXPLICIT_REJECTED",
ComplianceLevel = "CRITICAL"|"HIGH"|"MEDIUM"|"LOW"|"INFORMATIONAL"|"UNSPECIFIED",
ApprovalDate = as.POSIXct(
"2015-01-01"
)
)
)
),
NextToken = "string"
)
[required] The ID of the patch baseline to retrieve the effective patches for.
The maximum number of patches to return (per page).
The token for the next set of items to return. (You received this token from a previous call.)
svc$describe_effective_patches_for_patch_baseline(
BaselineId = "string",
MaxResults = 123,
NextToken = "string"
)