Skip to content

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

testId

The ID of the virtual interface failover test.

virtualInterfaceId

The ID of the virtual interface that was tested.

bgpPeers

The BGP peers that were placed in the DOWN state during the virtual interface failover test.

status

The status of the virtual interface failover test.

maxResults

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

If MaxResults is given a value larger than 100, only 100 results are returned.

nextToken

The 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"
)

Request syntax

svc$list_virtual_interface_test_history(
  testId = "string",
  virtualInterfaceId = "string",
  bgpPeers = list(
    "string"
  ),
  status = "string",
  maxResults = 123,
  nextToken = "string"
)