Skip to content

Start Test Case Execution

connect_start_test_case_execution R Documentation

Starts executing a published test case

Description

Starts executing a published test case.

Usage

connect_start_test_case_execution(InstanceId, TestCaseId, ClientToken)

Arguments

InstanceId

[required] The identifier of the Amazon Connect instance.

TestCaseId

[required] The identifier of the test case to execute.

ClientToken

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.

Value

A list with the following syntax:

list(
  TestCaseExecutionId = "string",
  TestCaseId = "string",
  Status = "INITIATED"|"PASSED"|"FAILED"|"IN_PROGRESS"|"STOPPED"
)

Request syntax

svc$start_test_case_execution(
  InstanceId = "string",
  TestCaseId = "string",
  ClientToken = "string"
)