Skip to content

Delete Local Gateway Virtual Interface

ec2_delete_local_gateway_virtual_interface R Documentation

Deletes the specified local gateway virtual interface

Description

Deletes the specified local gateway virtual interface.

Usage

ec2_delete_local_gateway_virtual_interface(
  LocalGatewayVirtualInterfaceId, DryRun)

Arguments

LocalGatewayVirtualInterfaceId

[required] The ID of the local virtual interface to delete.

DryRun

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

Value

A list with the following syntax:

list(
  LocalGatewayVirtualInterface = list(
    LocalGatewayVirtualInterfaceId = "string",
    LocalGatewayId = "string",
    LocalGatewayVirtualInterfaceGroupId = "string",
    LocalGatewayVirtualInterfaceArn = "string",
    OutpostLagId = "string",
    Vlan = 123,
    LocalAddress = "string",
    PeerAddress = "string",
    LocalBgpAsn = 123,
    PeerBgpAsn = 123,
    PeerBgpAsnExtended = 123,
    OwnerId = "string",
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    ),
    ConfigurationState = "pending"|"available"|"deleting"|"deleted"
  )
)

Request syntax

svc$delete_local_gateway_virtual_interface(
  LocalGatewayVirtualInterfaceId = "string",
  DryRun = TRUE|FALSE
)