effective_patches_for_patch_baselines
Creates, updates, deletes, gets or lists an effective_patches_for_patch_baselines resource.
Overview
| Name | effective_patches_for_patch_baselines |
| Type | Resource |
| Id | aws.ssm.effective_patches_for_patch_baselines |
Fields
The following fields are returned by SELECT queries:
- describe_effective_patches_for_patch_baseline
| Name | Datatype | Description |
|---|---|---|
patch | object | Represents metadata about a patch. |
patch_status | object | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_effective_patches_for_patch_baseline | select | region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_effective_patches_for_patch_baseline
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
;