Skip to content

Describe Runtime Versions

synthetics_describe_runtime_versions R Documentation

Returns a list of Synthetics canary runtime versions

Description

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

Usage

synthetics_describe_runtime_versions(NextToken, MaxResults)

Arguments

NextToken

A token that indicates that there is more data available. You can use this token in a subsequent describe_runtime_versions operation to retrieve the next set of results.

MaxResults

Specify this parameter to limit how many runs are returned each time you use the describe_runtime_versions operation. If you omit this parameter, the default of 100 is used.

Value

A list with the following syntax:

list(
  RuntimeVersions = list(
    list(
      VersionName = "string",
      Description = "string",
      ReleaseDate = as.POSIXct(
        "2015-01-01"
      ),
      DeprecationDate = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_runtime_versions(
  NextToken = "string",
  MaxResults = 123
)