Connect / Client / list_test_case_executions
list_test_case_executions¶
- Connect.Client.list_test_case_executions(**kwargs)¶
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.
See also: AWS API Documentation
Request Syntax
response = client.list_test_case_executions( InstanceId='string', TestCaseId='string', TestCaseName='string', StartTime=datetime(2015, 1, 1), EndTime=datetime(2015, 1, 1), Status='INITIATED'|'PASSED'|'FAILED'|'IN_PROGRESS'|'STOPPED', NextToken='string', MaxResults=123 )
- Parameters:
InstanceId (string) –
[REQUIRED]
The identifier of the Amazon Connect instance.
TestCaseId (string) – Filter executions by test case identifier.
TestCaseName (string) – Filter executions by test case name.
StartTime (datetime) – Filter executions that started after this time.
EndTime (datetime) – Filter executions that started before this time.
Status (string) – Filter executions by status.
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.
MaxResults (integer) – The maximum number of results to return per page.
- Return type:
dict
- Returns:
Response Syntax
{ 'TestCaseExecutions': [ { 'StartTime': datetime(2015, 1, 1), 'EndTime': datetime(2015, 1, 1), 'TestCaseExecutionId': 'string', 'TestCaseId': 'string', 'TestCaseExecutionStatus': 'INITIATED'|'PASSED'|'FAILED'|'IN_PROGRESS'|'STOPPED', 'Tags': { 'string': 'string' } }, ], 'NextToken': 'string' }
Response Structure
(dict) –
TestCaseExecutions (list) –
An array of test case execution summary objects.
(dict) –
Contains information about a test case execution.
StartTime (datetime) –
The timestamp when the test case execution started.
EndTime (datetime) –
The timestamp when the test case execution ended.
TestCaseExecutionId (string) –
The identifier of the test case execution.
TestCaseId (string) –
The identifier of the test case.
TestCaseExecutionStatus (string) –
The status of the test case execution.
Tags (dict) –
The tags used to organize, track, or control access for this resource.
(string) –
(string) –
NextToken (string) –
If there are additional results, this is the token for the next set of results.
Exceptions