List Entity Recognizer Summaries
comprehend_list_entity_recognizer_summaries | R Documentation |
Gets a list of summaries for the entity recognizers that you have created¶
Description¶
Gets a list of summaries for the entity recognizers that you have created.
Usage¶
Arguments¶
NextToken
Identifies the next page of results to return.
MaxResults
The maximum number of results to return on each page. The default is 100.
Value¶
A list with the following syntax:
list(
EntityRecognizerSummariesList = list(
list(
RecognizerName = "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"
)