Skip to main content

runtime_versions

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

Overview

Nameruntime_versions
TypeResource
Idaws.synthetics.runtime_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringA token that indicates that there is more data available. You can use this token in a subsequent DescribeRuntimeVersions operation to retrieve the next set of results.
runtime_versionsarrayAn array of objects that display the details about each Synthetics canary runtime version.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_runtime_versionsselectregionReturns a list of Synthetics canary runtime versions. For more information, see Canary Runtime Versions.

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

Returns a list of Synthetics canary runtime versions. For more information, see Canary Runtime Versions.

SELECT
next_token,
runtime_versions
FROM aws.synthetics.runtime_versions
WHERE region = '{{ region }}' -- required
;