Skip to content

Describe Test Case

connect_describe_test_case R Documentation

Describes the specified test case and allows you to get the content and metadata of the test case for the specified Amazon Connect instance

Description

Describes the specified test case and allows you to get the content and metadata of the test case for the specified Amazon Connect instance.

Usage

connect_describe_test_case(InstanceId, TestCaseId, Status)

Arguments

InstanceId

[required] The identifier of the Amazon Connect instance.

TestCaseId

[required] The identifier of the test case.

Status

The status of the test case version to retrieve. If not specified, returns the published version if available, otherwise returns the saved version.

Value

A list with the following syntax:

list(
  TestCase = list(
    Arn = "string",
    Id = "string",
    Name = "string",
    Content = "string",
    EntryPoint = list(
      Type = "VOICE_CALL"|"CHAT",
      VoiceCallEntryPointParameters = list(
        SourcePhoneNumber = "string",
        DestinationPhoneNumber = "string",
        FlowId = "string"
      ),
      ChatEntryPointParameters = list(
        FlowId = "string"
      )
    ),
    InitializationData = "string",
    Description = "string",
    Status = "PUBLISHED"|"SAVED",
    LastModifiedTime = as.POSIXct(
      "2015-01-01"
    ),
    LastModifiedRegion = "string",
    Tags = list(
      "string"
    ),
    TestCaseSha256 = "string"
  )
)

Request syntax

svc$describe_test_case(
  InstanceId = "string",
  TestCaseId = "string",
  Status = "PUBLISHED"|"SAVED"
)