List Document Classifier Summaries
| comprehend_list_document_classifier_summaries | R Documentation |
Gets a list of summaries of the document classifiers that you have created¶
Description¶
Gets a list of summaries of the document classifiers that you have created
Usage¶
Arguments¶
NextTokenIdentifies the next page of results to return.
MaxResultsThe maximum number of results to return on each page. The default is 100.
Value¶
A list with the following syntax:
list(
DocumentClassifierSummariesList = list(
list(
DocumentClassifierName = "string",
NumberOfVersions = 123,
LatestVersionCreatedAt = as.POSIXct(
"2015-01-01"
),
LatestVersionName = "string",
LatestVersionStatus = "SUBMITTED"|"TRAINING"|"DELETING"|"STOP_REQUESTED"|"STOPPED"|"IN_ERROR"|"TRAINED"|"TRAINED_WITH_WARNING"
)
),
NextToken = "string"
)