List Datasets
| lookoutequipment_list_datasets | R Documentation |
Lists all datasets currently available in your account, filtering on the dataset name¶
Description¶
Lists all datasets currently available in your account, filtering on the dataset name.
Usage¶
Arguments¶
NextTokenAn opaque pagination token indicating where to continue the listing of datasets.
MaxResultsSpecifies the maximum number of datasets to list.
DatasetNameBeginsWithThe beginning of the name of the datasets to be listed.
Value¶
A list with the following syntax:
list(
NextToken = "string",
DatasetSummaries = list(
list(
DatasetName = "string",
DatasetArn = "string",
Status = "CREATED"|"INGESTION_IN_PROGRESS"|"ACTIVE"|"IMPORT_IN_PROGRESS",
CreatedAt = as.POSIXct(
"2015-01-01"
)
)
)
)