Skip to main content

patch_groups

Creates, updates, deletes, gets or lists a patch_groups resource.

Overview

Namepatch_groups
TypeResource
Idaws.ssm.patch_groups

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
baseline_identityobjectDefines the basic information about a patch baseline.
patch_groupstringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_patch_groupsselectregionLists 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.

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

SELECT examples

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
;