List Virtual Interface Test History
| directconnect_list_virtual_interface_test_history | R Documentation |
Lists the virtual interface failover test history¶
Description¶
Lists the virtual interface failover test history.
Usage¶
directconnect_list_virtual_interface_test_history(testId,
virtualInterfaceId, bgpPeers, status, maxResults, nextToken)
Arguments¶
testIdThe ID of the virtual interface failover test.
virtualInterfaceIdThe ID of the virtual interface that was tested.
bgpPeersThe BGP peers that were placed in the DOWN state during the virtual interface failover test.
statusThe status of the virtual interface failover test.
maxResultsThe maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned
nextTokenvalue.If
MaxResultsis given a value larger than 100, only 100 results are returned.nextTokenThe token for the next page of results.
Value¶
A list with the following syntax:
list(
virtualInterfaceTestHistory = list(
list(
testId = "string",
virtualInterfaceId = "string",
bgpPeers = list(
"string"
),
status = "string",
ownerAccount = "string",
testDurationInMinutes = 123,
startTime = as.POSIXct(
"2015-01-01"
),
endTime = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)