Skip to content

Delete Route Server Endpoint

ec2_delete_route_server_endpoint R Documentation

Deletes the specified route server endpoint

Description

Deletes the specified route server endpoint.

A route server endpoint is an Amazon Web Services-managed component inside a subnet that facilitates BGP (Border Gateway Protocol) connections between your route server and your BGP peers.

Usage

ec2_delete_route_server_endpoint(RouteServerEndpointId, DryRun)

Arguments

RouteServerEndpointId

[required] The ID of the route server endpoint to delete.

DryRun

A check for 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(
  RouteServerEndpoint = list(
    RouteServerId = "string",
    RouteServerEndpointId = "string",
    VpcId = "string",
    SubnetId = "string",
    EniId = "string",
    EniAddress = "string",
    State = "pending"|"available"|"deleting"|"deleted"|"failing"|"failed"|"delete-failed",
    FailureReason = "string",
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)

Request syntax

svc$delete_route_server_endpoint(
  RouteServerEndpointId = "string",
  DryRun = TRUE|FALSE
)