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 |
MaxResults |
Specify this parameter to limit how many runs are returned each
time you use the |
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
)