Skip to main content

test_case_executions

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

Overview

Nametest_case_executions
TypeResource
Idaws.connect.test_case_executions

Fields

The following fields are returned by SELECT queries:

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_test_case_executionsselectinstance_id, regiontestCaseId, testCaseName, startTime, endTime, status, nextToken, maxResultsLists all test case executions and allows filtering by test case id, test case name, start time, end time or status of the execution for 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)
endTimeinteger (int64)Filter executions that started before this time.
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.
startTimeinteger (int64)Filter executions that started after this time.
statusstringFilter executions by status.
testCaseIdstringFilter executions by test case identifier.
testCaseNamestringFilter executions by test case name.

SELECT examples

Lists all test case executions and allows filtering by test case id, test case name, start time, end time or status of the execution for the specified Amazon Connect instance.

SELECT
next_token,
test_case_executions
FROM aws.connect.test_case_executions
WHERE instance_id = '{{ instance_id }}' -- required
AND region = '{{ region }}' -- required
AND testCaseId = '{{ testCaseId }}'
AND testCaseName = '{{ testCaseName }}'
AND startTime = '{{ startTime }}'
AND endTime = '{{ endTime }}'
AND status = '{{ status }}'
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;