Skip to main content

effective_patches_for_patch_baselines

Creates, updates, deletes, gets or lists an effective_patches_for_patch_baselines resource.

Overview

Nameeffective_patches_for_patch_baselines
TypeResource
Idaws.ssm.effective_patches_for_patch_baselines

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
patchobjectRepresents metadata about a patch.
patch_statusobjectThe status of the patch in a patch baseline. This includes information about whether the patch is currently approved, due to be approved by a rule, explicitly approved, or explicitly rejected and the date the patch was or will be approved.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_effective_patches_for_patch_baselineselectregionRetrieves the current effective patches (the patch and the approval state) for the specified patch baseline. Applies to patch baselines for Windows only.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves the current effective patches (the patch and the approval state) for the specified patch baseline. Applies to patch baselines for Windows only.

SELECT
patch,
patch_status
FROM aws.ssm.effective_patches_for_patch_baselines
WHERE region = '{{ region }}' -- required
;