test_case_execution_records
Creates, updates, deletes, gets or lists a test_case_execution_records resource.
Overview
| Name | test_case_execution_records |
| Type | Resource |
| Id | aws.connect.test_case_execution_records |
Fields
The following fields are returned by SELECT queries:
- list_test_case_execution_records
| Name | Datatype | Description |
|---|---|---|
execution_records | array | An array of test case execution record objects. |
next_token | string | If there are additional results, this is the token for the next set of results. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_test_case_execution_records | select | instance_id, test_case_id, test_case_execution_id, region | status, nextToken, maxResults | Lists 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.
| Name | Datatype | Description |
|---|---|---|
instance_id | string | The identifier of the Amazon Connect instance. |
region | string | AWS region (default: us-east-1) |
test_case_execution_id | string | The identifier of the test case execution. |
test_case_id | string | The identifier of the test case. |
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. |
status | string | Filter execution records by status. |
SELECT examples
- list_test_case_execution_records
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 }}'
;