Skip to content

Describe Test Set

lexmodelsv2_describe_test_set R Documentation

Gets metadata information about the test set

Description

Gets metadata information about the test set.

Usage

lexmodelsv2_describe_test_set(testSetId)

Arguments

testSetId

[required] The test set Id for the test set request.

Value

A list with the following syntax:

list(
  testSetId = "string",
  testSetName = "string",
  description = "string",
  modality = "Text"|"Audio",
  status = "Importing"|"PendingAnnotation"|"Deleting"|"ValidationError"|"Ready",
  roleArn = "string",
  numTurns = 123,
  storageLocation = list(
    s3BucketName = "string",
    s3Path = "string",
    kmsKeyArn = "string"
  ),
  creationDateTime = as.POSIXct(
    "2015-01-01"
  ),
  lastUpdatedDateTime = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$describe_test_set(
  testSetId = "string"
)