Skip to main content

group_resources

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

Overview

Namegroup_resources
TypeResource
Idaws.synthetics.group_resources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
resourcestringAn array of ARNs. These ARNs are for the canaries that are associated with the group.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_group_resourcesselectgroup_identifier, regionThis operation returns a list of the ARNs of the canaries that are associated with the specified group.

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
group_identifierstringSpecifies the group to return information for. You can specify the group name, the ARN, or the group ID as the GroupIdentifier.
regionstringAWS region (default: us-east-1)

SELECT examples

This operation returns a list of the ARNs of the canaries that are associated with the specified group.

SELECT
resource
FROM aws.synthetics.group_resources
WHERE group_identifier = '{{ group_identifier }}' -- required
AND region = '{{ region }}' -- required
;