test_execution_artifacts_urls
Creates, updates, deletes, gets or lists a test_execution_artifacts_urls resource.
Overview
| Name | test_execution_artifacts_urls |
| Type | Resource |
| Id | aws.lexv2_models.test_execution_artifacts_urls |
Fields
The following fields are returned by SELECT queries:
- get_test_execution_artifacts_url
| Name | Datatype | Description |
|---|---|---|
download_artifacts_url | string | The pre-signed Amazon S3 URL to download completed test execution. |
test_execution_id | string | The unique identifier of the completed test execution. (pattern: <code>^[0-9a-zA-Z]+$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_test_execution_artifacts_url | select | test_execution_id, region | The pre-signed Amazon S3 URL to download the test execution result artifacts. |
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_execution_id | string | The unique identifier of the completed test execution. |
SELECT examples
- get_test_execution_artifacts_url
The pre-signed Amazon S3 URL to download the test execution result artifacts.
SELECT
download_artifacts_url,
test_execution_id
FROM aws.lexv2_models.test_execution_artifacts_urls
WHERE test_execution_id = '{{ test_execution_id }}' -- required
AND region = '{{ region }}' -- required
;