Skip to content

Enable Route Server Propagation

ec2_enable_route_server_propagation R Documentation

Defines which route tables the route server can update with routes

Description

Defines which route tables the route server can update with routes.

When enabled, route server propagation installs the routes in the FIB on the route table you've specified. Route server supports IPv4 and IPv6 route propagation.

For more information see Dynamic routing in your VPC with VPC Route Server in the Amazon VPC User Guide.

Usage

ec2_enable_route_server_propagation(RouteServerId, RouteTableId, DryRun)

Arguments

RouteServerId

[required] The ID of the route server for which to enable propagation.

RouteTableId

[required] The ID of the route table to which route server will propagate routes.

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(
  RouteServerPropagation = list(
    RouteServerId = "string",
    RouteTableId = "string",
    State = "pending"|"available"|"deleting"
  )
)

Request syntax

svc$enable_route_server_propagation(
  RouteServerId = "string",
  RouteTableId = "string",
  DryRun = TRUE|FALSE
)