List Experiment Templates
fis_list_experiment_templates | R Documentation |
Lists your experiment templates¶
Description¶
Lists your experiment templates.
Usage¶
fis_list_experiment_templates(maxResults, nextToken)
Arguments¶
maxResults |
The maximum number of results to return with a single call. To
retrieve the remaining results, make another call with the returned
|
nextToken |
The token for the next page of results. |
Value¶
A list with the following syntax:
list(
experimentTemplates = list(
list(
id = "string",
arn = "string",
description = "string",
creationTime = as.POSIXct(
"2015-01-01"
),
lastUpdateTime = as.POSIXct(
"2015-01-01"
),
tags = list(
"string"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_experiment_templates(
maxResults = 123,
nextToken = "string"
)