Skip to main content

test_case_execution_records

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

Overview

Nametest_case_execution_records
TypeResource
Idaws.connect.test_case_execution_records

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
execution_recordsarrayAn array of test case execution record objects.
next_tokenstringIf there are additional results, this is the token for the next set of results.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_test_case_execution_recordsselectinstance_id, test_case_id, test_case_execution_id, regionstatus, nextToken, maxResultsLists detailed steps of test case execution that includes all observations along with actions taken and data associated in the specified Amazon Connect instance.

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
instance_idstringThe identifier of the Amazon Connect instance.
regionstringAWS region (default: us-east-1)
test_case_execution_idstringThe identifier of the test case execution.
test_case_idstringThe identifier of the test case.
maxResultsintegerThe maximum number of results to return per page.
nextTokenstringThe token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
statusstringFilter execution records by status.

SELECT examples

Lists detailed steps of test case execution that includes all observations along with actions taken and data associated in the specified Amazon Connect instance.

SELECT
execution_records,
next_token
FROM aws.connect.test_case_execution_records
WHERE instance_id = '{{ instance_id }}' -- required
AND test_case_id = '{{ test_case_id }}' -- required
AND test_case_execution_id = '{{ test_case_execution_id }}' -- required
AND region = '{{ region }}' -- required
AND status = '{{ status }}'
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;