Get Route Server Associations
ec2_get_route_server_associations | R Documentation |
Gets information about the associations for the specified route server¶
Description¶
Gets information about the associations for the specified route server.
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_get_route_server_associations(RouteServerId, DryRun)
Arguments¶
RouteServerId |
[required] The ID of the route server for which to get association information. |
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(
RouteServerAssociations = list(
list(
RouteServerId = "string",
VpcId = "string",
State = "associating"|"associated"|"disassociating"
)
)
)
Request syntax¶
svc$get_route_server_associations(
RouteServerId = "string",
DryRun = TRUE|FALSE
)