List Datasets
comprehend_list_datasets | R Documentation |
List the datasets that you have configured in this Region¶
Description¶
List the datasets that you have configured in this Region. For more information about datasets, see Flywheel overview in the Amazon Comprehend Developer Guide.
Usage¶
Arguments¶
FlywheelArn
The Amazon Resource Number (ARN) of the flywheel.
Filter
Filters the datasets to be returned in the response.
NextToken
Identifies the next page of results to return.
MaxResults
Maximum number of results to return in a response. The default is 100.
Value¶
A list with the following syntax:
list(
DatasetPropertiesList = list(
list(
DatasetArn = "string",
DatasetName = "string",
DatasetType = "TRAIN"|"TEST",
DatasetS3Uri = "string",
Description = "string",
Status = "CREATING"|"COMPLETED"|"FAILED",
Message = "string",
NumberOfDocuments = 123,
CreationTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)