tracks
Creates, updates, deletes, gets or lists a tracks resource.
Overview
| Name | tracks |
| Type | Resource |
| Id | aws.redshift_serverless.tracks |
Fields
The following fields are returned by SELECT queries:
- get_track
- list_tracks
| Name | Datatype | Description |
|---|---|---|
track_name | string | The name of the track. Valid values are current and trailing. (pattern: <code>^[a-zA-Z0-9_]+$</code>) |
update_targets | array | An array of UpdateTarget objects to update with the track. |
workgroup_version | string | The workgroup version number for the workgroup release. |
| Name | Datatype | Description |
|---|---|---|
track_name | string | The name of the track. Valid values are current and trailing. (pattern: <code>^[a-zA-Z0-9_]+$</code>) |
update_targets | array | An array of UpdateTarget objects to update with the track. |
workgroup_version | string | The workgroup version number for the workgroup release. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_track | select | region | Get the Redshift Serverless version for a specified track. | |
list_tracks | select | region | List the Amazon Redshift Serverless 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
- get_track
- list_tracks
Get the Redshift Serverless version for a specified track.
SELECT
track_name,
update_targets,
workgroup_version
FROM aws.redshift_serverless.tracks
WHERE region = '{{ region }}' -- required
;
List the Amazon Redshift Serverless versions.
SELECT
track_name,
update_targets,
workgroup_version
FROM aws.redshift_serverless.tracks
WHERE region = '{{ region }}' -- required
;