Skip to content

List Test Case Execution Records

connect_list_test_case_execution_records R Documentation

Lists detailed steps of test case execution that includes all observations along with actions taken and data associated in the specified Amazon Connect instance

Description

Lists detailed steps of test case execution that includes all observations along with actions taken and data associated in the specified Amazon Connect instance.

Usage

connect_list_test_case_execution_records(InstanceId, TestCaseId,
  TestCaseExecutionId, Status, NextToken, MaxResults)

Arguments

InstanceId

[required] The identifier of the Amazon Connect instance.

TestCaseId

[required] The identifier of the test case.

TestCaseExecutionId

[required] The identifier of the test case execution.

Status

Filter execution records 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(
  ExecutionRecords = list(
    list(
      ObservationId = "string",
      Status = "PASSED"|"FAILED"|"IN_PROGRESS"|"STOPPED",
      Timestamp = as.POSIXct(
        "2015-01-01"
      ),
      Record = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_test_case_execution_records(
  InstanceId = "string",
  TestCaseId = "string",
  TestCaseExecutionId = "string",
  Status = "INITIATED"|"PASSED"|"FAILED"|"IN_PROGRESS"|"STOPPED",
  NextToken = "string",
  MaxResults = 123
)