Skip to main content

virtual_interface_test_histories

Creates, updates, deletes, gets or lists a virtual_interface_test_histories resource.

Overview

Namevirtual_interface_test_histories
TypeResource
Idaws.directconnect.virtual_interface_test_histories

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringThe token to use to retrieve the next page of results. This value is null when there are no more results to return.
virtual_interface_test_historyarrayThe ID of the tested virtual interface.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_virtual_interface_test_historyselectregionLists the virtual interface failover test history.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Lists the virtual interface failover test history.

SELECT
next_token,
virtual_interface_test_history
FROM aws.directconnect.virtual_interface_test_histories
WHERE region = '{{ region }}' -- required
;