Skip to main content

test_execution_artifacts_urls

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

Overview

Nametest_execution_artifacts_urls
TypeResource
Idaws.lexv2_models.test_execution_artifacts_urls

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
download_artifacts_urlstringThe pre-signed Amazon S3 URL to download completed test execution.
test_execution_idstringThe unique identifier of the completed test execution. (pattern: <code>^[0-9a-zA-Z]+$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_test_execution_artifacts_urlselecttest_execution_id, regionThe 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
test_execution_idstringThe unique identifier of the completed test execution.

SELECT examples

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
;