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¶
lookoutequipment_list_datasets(NextToken, MaxResults,
DatasetNameBeginsWith)
Arguments¶
NextToken |
An opaque pagination token indicating where to continue the listing of datasets. |
MaxResults |
Specifies the maximum number of datasets to list. |
DatasetNameBeginsWith |
The 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"
)
)
)
)
Request syntax¶
svc$list_datasets(
NextToken = "string",
MaxResults = 123,
DatasetNameBeginsWith = "string"
)