Skip to content

Delete Vpc Endpoint Association

networkfirewall_delete_vpc_endpoint_association R Documentation

Deletes the specified VpcEndpointAssociation

Description

Deletes the specified VpcEndpointAssociation.

You can check whether an endpoint association is in use by reviewing the route tables for the Availability Zones where you have the endpoint subnet mapping. You can retrieve the subnet mapping by calling describe_vpc_endpoint_association. You define and update the route tables through Amazon VPC. As needed, update the route tables for the Availability Zone to remove the firewall endpoint for the association. When the route tables no longer use the firewall endpoint, you can remove the endpoint association safely.

Usage

networkfirewall_delete_vpc_endpoint_association(
  VpcEndpointAssociationArn)

Arguments

VpcEndpointAssociationArn

[required] The Amazon Resource Name (ARN) of a VPC endpoint association.

Value

A list with the following syntax:

list(
  VpcEndpointAssociation = list(
    VpcEndpointAssociationId = "string",
    VpcEndpointAssociationArn = "string",
    FirewallArn = "string",
    VpcId = "string",
    SubnetMapping = list(
      SubnetId = "string",
      IPAddressType = "DUALSTACK"|"IPV4"|"IPV6"
    ),
    Description = "string",
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  ),
  VpcEndpointAssociationStatus = list(
    Status = "PROVISIONING"|"DELETING"|"READY",
    AssociationSyncState = list(
      list(
        Attachment = list(
          SubnetId = "string",
          EndpointId = "string",
          Status = "CREATING"|"DELETING"|"FAILED"|"ERROR"|"SCALING"|"READY",
          StatusMessage = "string"
        )
      )
    )
  )
)

Request syntax

svc$delete_vpc_endpoint_association(
  VpcEndpointAssociationArn = "string"
)