test_set_records
Creates, updates, deletes, gets or lists a test_set_records resource.
Overview
| Name | test_set_records |
| Type | Resource |
| Id | aws.lexv2_models.test_set_records |
Fields
The following fields are returned by SELECT queries:
- list_test_set_records
| Name | Datatype | Description |
|---|---|---|
next_token | string | A 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_records | array | The list of records from the test set. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_test_set_records | select | test_set_id, region | The 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
test_set_id | string | The identifier of the test set to list its test set records. |
SELECT examples
- list_test_set_records
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
;