Disassociate Route Server
ec2_disassociate_route_server | R Documentation |
Disassociates a route server from a VPC¶
Description¶
Disassociates a route server from a VPC.
A route server association is the connection established between a route server and a VPC.
For more information see Dynamic routing in your VPC with VPC Route Server in the Amazon VPC User Guide.
Usage¶
ec2_disassociate_route_server(RouteServerId, VpcId, DryRun)
Arguments¶
RouteServerId |
[required] The ID of the route server to disassociate. |
VpcId |
[required] The ID of the VPC to disassociate from the route server. |
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
|
Value¶
A list with the following syntax:
list(
RouteServerAssociation = list(
RouteServerId = "string",
VpcId = "string",
State = "associating"|"associated"|"disassociating"
)
)
Request syntax¶
svc$disassociate_route_server(
RouteServerId = "string",
VpcId = "string",
DryRun = TRUE|FALSE
)