patch_groups
Creates, updates, deletes, gets or lists a patch_groups resource.
Overview
| Name | patch_groups |
| Type | Resource |
| Id | aws.ssm.patch_groups |
Fields
The following fields are returned by SELECT queries:
- describe_patch_groups
| Name | Datatype | Description |
|---|---|---|
baseline_identity | object | Defines the basic information about a patch baseline. |
patch_group | string | The name of the patch group registered with the patch baseline. (pattern: <code>^([\p{L}\p{Z}\p{N}_.:/=+-@]*)$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_patch_groups | select | region | Lists all patch groups that have been registered with patch baselines. |
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_patch_groups
Lists all patch groups that have been registered with patch baselines.
SELECT
baseline_identity,
patch_group
FROM aws.ssm.patch_groups
WHERE region = '{{ region }}' -- required
;