test_case_execution_summaries
Creates, updates, deletes, gets or lists a test_case_execution_summaries resource.
Overview
| Name | test_case_execution_summaries |
| Type | Resource |
| Id | aws.connect.test_case_execution_summaries |
Fields
The following fields are returned by SELECT queries:
- get_test_case_execution_summary
| Name | Datatype | Description |
|---|---|---|
end_time | string (date-time) | The timestamp when the test case execution ended. |
observation_summary | object | Summary statistics for the test case execution. |
start_time | string (date-time) | The timestamp when the test case execution started. |
status | string | The status of the test case execution. (INITIATED, PASSED, FAILED, IN_PROGRESS, STOPPED) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_test_case_execution_summary | select | instance_id, test_case_id, test_case_execution_id, region | Retrieves an overview of a test execution that includes the status of the execution, start and end time, and observation summary. |
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. |
SELECT examples
- get_test_case_execution_summary
Retrieves an overview of a test execution that includes the status of the execution, start and end time, and observation summary.
SELECT
end_time,
observation_summary,
start_time,
status
FROM aws.connect.test_case_execution_summaries
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
;