Skip to content

Delete Local Gateway Route Table Vpc Association

ec2_delete_local_gateway_route_table_vpc_association R Documentation

Deletes the specified association between a VPC and local gateway route table

Description

Deletes the specified association between a VPC and local gateway route table.

Usage

ec2_delete_local_gateway_route_table_vpc_association(
  LocalGatewayRouteTableVpcAssociationId, DryRun)

Arguments

LocalGatewayRouteTableVpcAssociationId

[required] The ID of the association.

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(
  LocalGatewayRouteTableVpcAssociation = list(
    LocalGatewayRouteTableVpcAssociationId = "string",
    LocalGatewayRouteTableId = "string",
    LocalGatewayRouteTableArn = "string",
    LocalGatewayId = "string",
    VpcId = "string",
    OwnerId = "string",
    State = "string",
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)

Request syntax

svc$delete_local_gateway_route_table_vpc_association(
  LocalGatewayRouteTableVpcAssociationId = "string",
  DryRun = TRUE|FALSE
)