test_case_executions
Creates, updates, deletes, gets or lists a test_case_executions resource.
Overview
| Name | test_case_executions |
| Type | Resource |
| Id | aws.connect.test_case_executions |
Fields
The following fields are returned by SELECT queries:
- list_test_case_executions
| Name | Datatype | Description |
|---|---|---|
next_token | string | If there are additional results, this is the token for the next set of results. |
test_case_executions | array | An array of test case execution summary objects. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_test_case_executions | select | instance_id, region | testCaseId, testCaseName, startTime, endTime, status, nextToken, maxResults | 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. |
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 |
|---|---|---|
instance_id | string | The identifier of the Amazon Connect instance. |
region | string | AWS region (default: us-east-1) |
endTime | integer (int64) | Filter executions that started before this time. |
maxResults | integer | The maximum number of results to return per page. |
nextToken | string | The 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. |
startTime | integer (int64) | Filter executions that started after this time. |
status | string | Filter executions by status. |
testCaseId | string | Filter executions by test case identifier. |
testCaseName | string | Filter executions by test case name. |
SELECT examples
- list_test_case_executions
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 }}'
;