Describe Test Execution
lexmodelsv2_describe_test_execution | R Documentation |
Gets metadata information about the test execution¶
Description¶
Gets metadata information about the test execution.
Usage¶
Arguments¶
testExecutionId
[required] The execution Id of the test set execution.
Value¶
A list with the following syntax:
list(
testExecutionId = "string",
creationDateTime = as.POSIXct(
"2015-01-01"
),
lastUpdatedDateTime = as.POSIXct(
"2015-01-01"
),
testExecutionStatus = "Pending"|"Waiting"|"InProgress"|"Completed"|"Failed"|"Stopping"|"Stopped",
testSetId = "string",
testSetName = "string",
target = list(
botAliasTarget = list(
botId = "string",
botAliasId = "string",
localeId = "string"
)
),
apiMode = "Streaming"|"NonStreaming",
testExecutionModality = "Text"|"Audio",
failureReasons = list(
"string"
)
)