List Test Set Records
lexmodelsv2_list_test_set_records | R Documentation |
The list of test set records¶
Description¶
The list of test set records.
Usage¶
Arguments¶
testSetId
[required] The identifier of the test set to list its test set records.
maxResults
The maximum number of test set records to return in each page. If there are fewer records than the max page size, only the actual number of records are returned.
nextToken
If the response from the ListTestSetRecords operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.
Value¶
A list with the following syntax:
list(
testSetRecords = list(
list(
recordNumber = 123,
conversationId = "string",
turnNumber = 123,
turnSpecification = list(
agentTurn = list(
agentPrompt = "string"
),
userTurn = list(
input = list(
utteranceInput = list(
textInput = "string",
audioInput = list(
audioFileS3Location = "string"
)
),
requestAttributes = list(
"string"
),
sessionState = list(
sessionAttributes = list(
"string"
),
activeContexts = list(
list(
name = "string"
)
),
runtimeHints = list(
slotHints = list(
list(
list(
runtimeHintValues = list(
list(
phrase = "string"
)
),
subSlotHints = list()
)
)
)
)
)
),
expected = list(
intent = list(
name = "string",
slots = list(
list(
value = "string",
values = list(
list()
),
subSlots = list()
)
)
),
activeContexts = list(
list(
name = "string"
)
),
transcript = "string"
)
)
)
)
),
nextToken = "string"
)