Skip to main content

tracks

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

Overview

Nametracks
TypeResource
Idaws.redshift_serverless.tracks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
track_namestringThe name of the track. Valid values are current and trailing. (pattern: <code>^[a-zA-Z0-9_]+$</code>)
update_targetsarrayAn array of UpdateTarget objects to update with the track.
workgroup_versionstringThe workgroup version number for the workgroup release.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_trackselectregionGet the Redshift Serverless version for a specified track.
list_tracksselectregionList 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.

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

SELECT examples

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
;