test_set_generations
Creates, updates, deletes, gets or lists a test_set_generations resource.
Overview
| Name | test_set_generations |
| Type | Resource |
| Id | aws.lexv2_models.test_set_generations |
Fields
The following fields are returned by SELECT queries:
- describe_test_set_generation
| Name | Datatype | Description |
|---|---|---|
creation_date_time | string (date-time) | The creation date and time for the test set generation. |
description | string | The test set description for the test set generation. |
failure_reasons | array | The reasons the test set generation failed. |
generation_data_source | object | The data source of the test set used for the test set generation. |
last_updated_date_time | string (date-time) | The date and time of the last update for the test set generation. |
role_arn | string | The roleARN of the test set used for the test set generation. (pattern: <code>^arn:aws:iam::[0-9]{12}:role/.*$</code>) |
storage_location | object | The Amazon S3 storage location for the test set generation. |
test_set_generation_id | string | The unique identifier of the test set generation. (pattern: <code>^[0-9a-zA-Z]+$</code>) |
test_set_generation_status | string | The status for the test set generation. (Generating, Ready, Failed, Pending) |
test_set_id | string | The unique identifier for the test set created for the generated test set. (pattern: <code>^[0-9a-zA-Z]+$</code>) |
test_set_name | string | The test set name for the generated test set. (pattern: <code>^([0-9a-zA-Z][_-]?){1,100}$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_test_set_generation | select | test_set_generation_id, region | Gets metadata information about the test set generation. |
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_generation_id | string | The unique identifier of the test set generation. |
SELECT examples
- describe_test_set_generation
Gets metadata information about the test set generation.
SELECT
creation_date_time,
description,
failure_reasons,
generation_data_source,
last_updated_date_time,
role_arn,
storage_location,
test_set_generation_id,
test_set_generation_status,
test_set_id,
test_set_name
FROM aws.lexv2_models.test_set_generations
WHERE test_set_generation_id = '{{ test_set_generation_id }}' -- required
AND region = '{{ region }}' -- required
;