Skip to main content

test_set_records

Creates, updates, deletes, gets or lists a test_set_records resource.

Overview

Nametest_set_records
TypeResource
Idaws.lexv2_models.test_set_records

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringA token that indicates whether there are more records to return in a response to the ListTestSetRecords operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListTestSetRecords operation request to get the next page of records.
test_set_recordsarrayThe list of records from the test set.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_test_set_recordsselecttest_set_id, regionThe list of test set records.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
test_set_idstringThe identifier of the test set to list its test set records.

SELECT examples

The list of test set records.

SELECT
next_token,
test_set_records
FROM aws.lexv2_models.test_set_records
WHERE test_set_id = '{{ test_set_id }}' -- required
AND region = '{{ region }}' -- required
;