runtime_versions
Creates, updates, deletes, gets or lists a runtime_versions resource.
Overview
| Name | runtime_versions |
| Type | Resource |
| Id | aws.synthetics.runtime_versions |
Fields
The following fields are returned by SELECT queries:
- describe_runtime_versions
| Name | Datatype | Description |
|---|---|---|
next_token | string | A 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_versions | array | An array of objects that display the details about each Synthetics canary runtime version. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_runtime_versions | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_runtime_versions
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
;