confirmTransitVirtualInterface method

Future<ConfirmTransitVirtualInterfaceResponse> confirmTransitVirtualInterface({
  1. required String directConnectGatewayId,
  2. required String virtualInterfaceId,
})

Accepts ownership of a transit virtual interface created by another AWS account.

After the owner of the transit virtual interface makes this call, the specified transit virtual interface is created and made available to handle traffic.

May throw DirectConnectServerException. May throw DirectConnectClientException.

Parameter directConnectGatewayId : The ID of the Direct Connect gateway.

Parameter virtualInterfaceId : The ID of the virtual interface.

Implementation

Future<ConfirmTransitVirtualInterfaceResponse>
    confirmTransitVirtualInterface({
  required String directConnectGatewayId,
  required String virtualInterfaceId,
}) async {
  ArgumentError.checkNotNull(
      directConnectGatewayId, 'directConnectGatewayId');
  ArgumentError.checkNotNull(virtualInterfaceId, 'virtualInterfaceId');
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'OvertureService.ConfirmTransitVirtualInterface'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'directConnectGatewayId': directConnectGatewayId,
      'virtualInterfaceId': virtualInterfaceId,
    },
  );

  return ConfirmTransitVirtualInterfaceResponse.fromJson(jsonResponse.body);
}