Update Test Set
lexmodelsv2_update_test_set | R Documentation |
The action to update the test set¶
Description¶
The action to update the test set.
Usage¶
lexmodelsv2_update_test_set(testSetId, testSetName, description)
Arguments¶
testSetId |
[required] The test set Id for which update test operation to be performed. |
testSetName |
[required] The new test set name. |
description |
The new test set description. |
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$update_test_set(
testSetId = "string",
testSetName = "string",
description = "string"
)