List Test Cases
| connect_list_test_cases | R Documentation |
Lists the test cases present in the specific Amazon Connect instance¶
Description¶
Lists the test cases present in the specific Amazon Connect instance.
Usage¶
connect_list_test_cases(InstanceId, NextToken, MaxResults)
Arguments¶
InstanceId |
[required] The identifier of the Amazon Connect instance. |
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(
TestCaseSummaryList = list(
list(
Id = "string",
Arn = "string",
Name = "string",
Status = "PUBLISHED"|"SAVED",
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
LastModifiedRegion = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_test_cases(
InstanceId = "string",
NextToken = "string",
MaxResults = 123
)