Skip to content

Get Test Case Execution Summary

connect_get_test_case_execution_summary R Documentation

Retrieves an overview of a test execution that includes the status of the execution, start and end time, and observation summary

Description

Retrieves an overview of a test execution that includes the status of the execution, start and end time, and observation summary.

Usage

connect_get_test_case_execution_summary(InstanceId, TestCaseId,
  TestCaseExecutionId)

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.

Value

A list with the following syntax:

list(
  StartTime = as.POSIXct(
    "2015-01-01"
  ),
  EndTime = as.POSIXct(
    "2015-01-01"
  ),
  Status = "INITIATED"|"PASSED"|"FAILED"|"IN_PROGRESS"|"STOPPED",
  ObservationSummary = list(
    TotalObservations = 123,
    ObservationsPassed = 123,
    ObservationsFailed = 123
  )
)

Request syntax

svc$get_test_case_execution_summary(
  InstanceId = "string",
  TestCaseId = "string",
  TestCaseExecutionId = "string"
)