Skip to content

Delete Local Gateway Route Table

ec2_delete_local_gateway_route_table R Documentation

Deletes a local gateway route table

Description

Deletes a local gateway route table.

Usage

ec2_delete_local_gateway_route_table(LocalGatewayRouteTableId, DryRun)

Arguments

LocalGatewayRouteTableId

[required] The ID of the local gateway route table.

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(
  LocalGatewayRouteTable = list(
    LocalGatewayRouteTableId = "string",
    LocalGatewayRouteTableArn = "string",
    LocalGatewayId = "string",
    OutpostArn = "string",
    OwnerId = "string",
    State = "string",
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    ),
    Mode = "direct-vpc-routing"|"coip",
    StateReason = list(
      Code = "string",
      Message = "string"
    )
  )
)

Request syntax

svc$delete_local_gateway_route_table(
  LocalGatewayRouteTableId = "string",
  DryRun = TRUE|FALSE
)