Skip to content

List Test Case Executions

connect_list_test_case_executions R Documentation

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

Description

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.

Usage

connect_list_test_case_executions(InstanceId, TestCaseId, TestCaseName,
  StartTime, EndTime, Status, NextToken, MaxResults)

Arguments

InstanceId

[required] The identifier of the Amazon Connect instance.

TestCaseId

Filter executions by test case identifier.

TestCaseName

Filter executions by test case name.

StartTime

Filter executions that started after this time.

EndTime

Filter executions that started before this time.

Status

Filter executions by status.

NextToken

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

The maximum number of results to return per page.

Value

A list with the following syntax:

list(
  TestCaseExecutions = list(
    list(
      StartTime = as.POSIXct(
        "2015-01-01"
      ),
      EndTime = as.POSIXct(
        "2015-01-01"
      ),
      TestCaseExecutionId = "string",
      TestCaseId = "string",
      TestCaseExecutionStatus = "INITIATED"|"PASSED"|"FAILED"|"IN_PROGRESS"|"STOPPED",
      Tags = list(
        "string"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_test_case_executions(
  InstanceId = "string",
  TestCaseId = "string",
  TestCaseName = "string",
  StartTime = 123,
  EndTime = 123,
  Status = "INITIATED"|"PASSED"|"FAILED"|"IN_PROGRESS"|"STOPPED",
  NextToken = "string",
  MaxResults = 123
)