Skip to content

Describe Test Set Discrepancy Report

lexmodelsv2_describe_test_set_discrepancy_report R Documentation

Gets metadata information about the test set discrepancy report

Description

Gets metadata information about the test set discrepancy report.

Usage

lexmodelsv2_describe_test_set_discrepancy_report(
  testSetDiscrepancyReportId)

Arguments

testSetDiscrepancyReportId

[required] The unique identifier of the test set discrepancy report.

Value

A list with the following syntax:

list(
  testSetDiscrepancyReportId = "string",
  testSetId = "string",
  creationDateTime = as.POSIXct(
    "2015-01-01"
  ),
  target = list(
    botAliasTarget = list(
      botId = "string",
      botAliasId = "string",
      localeId = "string"
    )
  ),
  testSetDiscrepancyReportStatus = "InProgress"|"Completed"|"Failed",
  lastUpdatedDataTime = as.POSIXct(
    "2015-01-01"
  ),
  testSetDiscrepancyTopErrors = list(
    intentDiscrepancies = list(
      list(
        intentName = "string",
        errorMessage = "string"
      )
    ),
    slotDiscrepancies = list(
      list(
        intentName = "string",
        slotName = "string",
        errorMessage = "string"
      )
    )
  ),
  testSetDiscrepancyRawOutputUrl = "string",
  failureReasons = list(
    "string"
  )
)

Request syntax

svc$describe_test_set_discrepancy_report(
  testSetDiscrepancyReportId = "string"
)