RouteServerPropagationReference

class aws_cdk.aws_ec2.RouteServerPropagationReference(*, route_server_id, route_table_id)

Bases: object

A reference to a RouteServerPropagation resource.

Parameters:
  • route_server_id (str) – The RouteServerId of the RouteServerPropagation resource.

  • route_table_id (str) – The RouteTableId of the RouteServerPropagation resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_ec2 as ec2

route_server_propagation_reference = ec2.RouteServerPropagationReference(
    route_server_id="routeServerId",
    route_table_id="routeTableId"
)

Attributes

route_server_id

The RouteServerId of the RouteServerPropagation resource.

route_table_id

The RouteTableId of the RouteServerPropagation resource.