Skip to content

List Tracks

redshiftserverless_list_tracks R Documentation

List the Amazon Redshift Serverless versions

Description

List the Amazon Redshift Serverless versions.

Usage

redshiftserverless_list_tracks(maxResults, nextToken)

Arguments

maxResults

The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.

nextToken

If your initial ListTracksRequest operation returns a nextToken, you can include the returned nextToken in following ListTracksRequest operations, which returns results in the next page.

Value

A list with the following syntax:

list(
  nextToken = "string",
  tracks = list(
    list(
      trackName = "string",
      updateTargets = list(
        list(
          trackName = "string",
          workgroupVersion = "string"
        )
      ),
      workgroupVersion = "string"
    )
  )
)

Request syntax

svc$list_tracks(
  maxResults = 123,
  nextToken = "string"
)