Describe Effective Patches for Patch Baseline
| ssm_describe_effective_patches_for_patch_baseline | R Documentation |
Retrieves the current effective patches (the patch and the approval state) for the specified patch baseline¶
Description¶
Retrieves the current effective patches (the patch and the approval state) for the specified patch baseline. Applies to patch baselines for Windows only.
Usage¶
Arguments¶
BaselineId[required] The ID of the patch baseline to retrieve the effective patches for.
MaxResultsThe maximum number of patches to return (per page).
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(
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"
)