List Training Datasets
cleanroomsml_list_training_datasets | R Documentation |
Returns a list of training datasets¶
Description¶
Returns a list of training datasets.
Usage¶
Arguments¶
nextToken
The token value retrieved from a previous call to access the next page of results.
maxResults
The maximum size of the results that is returned per call.
Value¶
A list with the following syntax:
list(
nextToken = "string",
trainingDatasets = list(
list(
createTime = as.POSIXct(
"2015-01-01"
),
updateTime = as.POSIXct(
"2015-01-01"
),
trainingDatasetArn = "string",
name = "string",
status = "ACTIVE",
description = "string"
)
)
)